summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_dgngrd.cc
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2010-05-22 17:33:55 -0400
committerCharles Otto <ottochar@gmail.com>2010-05-22 17:33:55 -0400
commite86e83a62339997aae6a1e240275ce302b0ba164 (patch)
tree1f4385491b3f8f2a2ecb40723cd2bac537cb6020 /crawl-ref/source/l_dgngrd.cc
parent9d8df7cc9a31ff522389a43bd7ac915afe0904dc (diff)
downloadcrawl-ref-e86e83a62339997aae6a1e240275ce302b0ba164.tar.gz
crawl-ref-e86e83a62339997aae6a1e240275ce302b0ba164.zip
Consolidate floor covering descriptions
Do the description text for floor coverings (mold, blood) in exactly one place. Add a different description for the 'glowing mold' that shows up when ballistos die.
Diffstat (limited to 'crawl-ref/source/l_dgngrd.cc')
-rw-r--r--crawl-ref/source/l_dgngrd.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/l_dgngrd.cc b/crawl-ref/source/l_dgngrd.cc
index e13e565d6c..6344755ea4 100644
--- a/crawl-ref/source/l_dgngrd.cc
+++ b/crawl-ref/source/l_dgngrd.cc
@@ -63,7 +63,7 @@ static int dgn_feature_desc(lua_State *ls)
description_type_by_name(lua_tostring(ls, 2));
const bool need_stop = lua_isboolean(ls, 3)? lua_toboolean(ls, 3) : false;
const std::string s =
- feature_description(feat, NUM_TRAPS, false, dtype, need_stop);
+ feature_description(feat, NUM_TRAPS, "", dtype, need_stop);
lua_pushstring(ls, s.c_str());
return (1);
}