From 93d0d5a9026642c1fd5f2d64c5aaa061ab99e459 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Fri, 13 Nov 2009 18:41:16 -0600 Subject: Revert "Mark potions of decay as chaotic, since they cause rotting." This reverts commit ad48240fe8672b50b10cf08aea2a99c4f0ca9467. (This was after some more thought. As an analogy, TSO hates poison, but doesn't punish you for poisoning yourself. Also, if you use Evaporate with such a potion and get a miasma cloud that rots monsters, it's already treated as a chaotic act.) --- crawl-ref/source/goditem.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'crawl-ref/source/goditem.cc') diff --git a/crawl-ref/source/goditem.cc b/crawl-ref/source/goditem.cc index 84ec163591..cfe29fcd8f 100644 --- a/crawl-ref/source/goditem.cc +++ b/crawl-ref/source/goditem.cc @@ -200,8 +200,7 @@ bool is_chaotic_item(const item_def& item) retval = (item.sub_type == WAND_POLYMORPH_OTHER); break; case OBJ_POTIONS: - retval = (item.sub_type == POT_DECAY - || item.sub_type == POT_MUTATION); + retval = (item.sub_type == POT_MUTATION); break; case OBJ_BOOKS: retval = is_chaotic_spellbook(item); -- cgit v1.2.3-54-g00ecf