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, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index f7b2e7d8ca..8149d8cb05 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -4929,8 +4929,7 @@ static bool print_god_abil_desc( int god, int numpower )
if ( abil != ABIL_NON_ABILITY )
{
const int spacesleft = 79 - buf.str().length();
- const std::string cost =
- "(" + make_cost_description(get_ability_def(abil)) + ")";
+ const std::string cost = "(" + make_cost_description(abil) + ")";
buf << std::setw(spacesleft) << cost;
}