summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index f686a3e04b..b59539e48d 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2941,7 +2941,8 @@ void describe_god( god_type which_god, bool give_title )
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)";
+ const std::string cost = "(" + make_cost_description(
+ ABIL_TROG_BURN_BOOKS) + ")";
buf << std::setw(spacesleft) << cost;
cprintf("%s" EOL, buf.str().c_str());
}