summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc11
1 files changed, 1 insertions, 10 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index a034c7f3e2..7f23c07988 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -4426,16 +4426,7 @@ void tile_place_monster(int gx, int gy, int idx, bool foreground, bool detected)
if (mon->type == MONS_PANDEMONIUM_DEMON)
return;
- if (mon->type == MONS_PLAYER_GHOST)
- {
- // Beautification hack. "Foo's ghost" is a little bit
- // verbose as a tag. "Foo" on its own should be sufficient.
- tiles.add_text_tag(TAG_NAMED_MONSTER, mon->mname, gc);
- }
- else
- {
- tiles.add_text_tag(TAG_NAMED_MONSTER, mon->name(DESC_PLAIN), gc);
- }
+ tiles.add_text_tag(TAG_NAMED_MONSTER, mon);
}
else
{