From aff23ef6538fe364b5b30f2589c00c6582be3528 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Sun, 22 Mar 2009 21:01:59 +0000 Subject: * Don't offer rotten chunks for wearers of "otG since it doesn't actually allow eating of rotten stuff. * Tweak Xom's mood descriptions -> shortened to 7. * Increase chance of Xom acting under tension: 5% -> 10% git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9535 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/directn.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crawl-ref/source/directn.cc') diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc index 9f31f50935..3f10cf7ce8 100644 --- a/crawl-ref/source/directn.cc +++ b/crawl-ref/source/directn.cc @@ -3050,6 +3050,7 @@ std::string get_monster_equipment_desc(const monsters *mon, bool full_desc, str = "neutral"; if (mon->type == MONS_DANCING_WEAPON + || mon-> type == MONS_PANDEMONIUM_DEMON || mons_is_known_mimic(mon)) { if (!str.empty()) @@ -3057,6 +3058,8 @@ std::string get_monster_equipment_desc(const monsters *mon, bool full_desc, if (mon->type == MONS_DANCING_WEAPON) str += "dancing weapon"; + else if (mon->type == MONS_PANDEMONIUM_DEMON) + str += "pandemonium demon"; else str += "mimic"; } -- cgit v1.2.3-54-g00ecf