summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/goditem.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-13 18:41:16 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-13 18:41:16 -0600
commit93d0d5a9026642c1fd5f2d64c5aaa061ab99e459 (patch)
tree4b6fbe3a103789f9e32b5e3873371e049e30e983 /crawl-ref/source/goditem.cc
parentad48240fe8672b50b10cf08aea2a99c4f0ca9467 (diff)
downloadcrawl-ref-93d0d5a9026642c1fd5f2d64c5aaa061ab99e459.tar.gz
crawl-ref-93d0d5a9026642c1fd5f2d64c5aaa061ab99e459.zip
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.)
Diffstat (limited to 'crawl-ref/source/goditem.cc')
-rw-r--r--crawl-ref/source/goditem.cc3
1 files changed, 1 insertions, 2 deletions
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);