From 659553d325a49df4870dcfa18af7f9bece5cbf16 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Sun, 12 Apr 2009 16:55:43 +0000 Subject: * Automate all the notetaking I always do when testing Xom. NOTE_DEBUG_XOM might be a tiny bit technical or spoily, but at the same time I like the results and think this flag could actually be turned into an option to autonote all Xom effects, so I've left it on in this commit, in case someone else is playtesting Xom. * Fix a monster polymorphing into an (invisible) unseen horror naming it. * Reactivate autopickup if you kill an invisible monster or see an invisible monster become visible. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9598 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/mutation.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/mutation.cc') diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc index b7c7650cca..148c927cca 100644 --- a/crawl-ref/source/mutation.cc +++ b/crawl-ref/source/mutation.cc @@ -2241,7 +2241,7 @@ bool mutate(mutation_type which_mutation, bool failMsg, // Hooves and talons force boots off. if (you_tran_can_wear(EQ_BOOTS)) - remove_one_equip(EQ_BOOTS, false); + remove_one_equip(EQ_BOOTS, false, true); break; case MUT_CLAWS: @@ -2252,7 +2252,7 @@ bool mutate(mutation_type which_mutation, bool failMsg, // mutation yet, so we have to check for level 2 or higher claws // here. if (you.mutation[mutat] >= 2 && you_tran_can_wear(EQ_GLOVES)) - remove_one_equip(EQ_GLOVES, false); + remove_one_equip(EQ_GLOVES, false, true); break; case MUT_HORNS: @@ -2265,7 +2265,7 @@ bool mutate(mutation_type which_mutation, bool failMsg, && is_hard_helmet(you.inv[you.equip[EQ_HELMET]]) && you_tran_can_wear(EQ_HELMET)) { - remove_one_equip(EQ_HELMET, false); + remove_one_equip(EQ_HELMET, false, true); } break; -- cgit v1.2.3-54-g00ecf