git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5963 c06c8d41-db1a-0410-9941-cceddc491573
5I2C4CN57VS6M3X7PIQHT4SSYTS6B5CTVTA67J37OGXUSHX3EMZAC
J6KWPTRP33BFL5OGI47CXLWFLOE7NLS7WGMWCEZI5EPYPNP27RYQC
DF5LOTJFSXOT7UBDHLBDLGA22OY4L7ZF6CVFP6H3KL4N5CHB5C5QC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
F2YWDQUXULLS2WKLVMNEJKEGSGG2MPEREVI2RKH7ROS2YYKKMXHAC
L4UCVNVRFTHENDKDOY6X75LXIE2B7XIMSKGVKHBOXNID7RDTBQRAC
XDJGQNFELURGXMUAOOVALQMSLAJVHMG63KPKVA33HTJFVZROGZ4AC
cprintf("You can call upon %s to burn books in your surroundings."
EOL, god_name(which_god).c_str());
// XXX Mega-hack. Duplicates code in _print_god_abil_desc().
// FIXME.
std::ostringstream buf;
buf << "You can call upon " << god_name(which_god)
<< " to burn books in your surroundings.";
const int spacesleft = 79 - buf.str().length();
const std::string cost = "(Food)";
buf << std::setw(spacesleft) << cost;
cprintf("%s" EOL, buf.str().c_str());