summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-23 15:09:55 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-23 15:09:55 +0000
commit663140d4a26b01c2d39a982dcdd935df42511466 (patch)
treed2e69014e52fef9ce5238638ca960175e21395ee
parent132b7ec49c80356356ab094b666e843961d4c79b (diff)
downloadcrawl-ref-663140d4a26b01c2d39a982dcdd935df42511466.tar.gz
crawl-ref-663140d4a26b01c2d39a982dcdd935df42511466.zip
Remove the check for lich-form in can_safely_mutate(), as the former
sets you.is_undead. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4541 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/mutation.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index aab5ea8402..07425ed09f 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -1054,7 +1054,6 @@ bool can_safely_mutate()
return ((!you.is_undead
|| (you.is_undead == US_SEMI_UNDEAD
&& you.hunger_state == HS_ENGORGED))
- && you.attribute[ATTR_TRANSFORMATION] != TRAN_LICH
&& player_mutation_level(MUT_MUTATION_RESISTANCE) != 3);
}