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.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 7776dc183b..592ff73fac 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2360,8 +2360,10 @@ void describe_monsters(const monsters& mons)
if (mons_is_mimic(mons.type) && mons.type != MONS_GOLD_MIMIC)
body << getLongDescription("mimic");
else
+ {
body << getLongDescription(mons.base_name(DESC_DBNAME, false),
mons.type == MONS_DANCING_WEAPON);
+ }
std::string symbol = "";
symbol += get_monster_data(mons.type)->showchar;
@@ -2454,9 +2456,9 @@ void describe_monsters(const monsters& mons)
case MONS_PROGRAM_BUG:
body << "If this monster is a \"program bug\", then it's "
- "recommended that you save your game and reload. Please report "
- "monsters who masquerade as program bugs or run around the "
- "dungeon without a proper description to the authorities.";
+ "recommended that you save your game and reload. Please report "
+ "monsters who masquerade as program bugs or run around the "
+ "dungeon without a proper description to the authorities.";
break;
default:
break;