From ad48240fe8672b50b10cf08aea2a99c4f0ca9467 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Fri, 13 Nov 2009 18:28:21 -0600 Subject: Mark potions of decay as chaotic, since they cause rotting. --- crawl-ref/source/goditem.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source') diff --git a/crawl-ref/source/goditem.cc b/crawl-ref/source/goditem.cc index cfe29fcd8f..84ec163591 100644 --- a/crawl-ref/source/goditem.cc +++ b/crawl-ref/source/goditem.cc @@ -200,7 +200,8 @@ bool is_chaotic_item(const item_def& item) retval = (item.sub_type == WAND_POLYMORPH_OTHER); break; case OBJ_POTIONS: - retval = (item.sub_type == POT_MUTATION); + retval = (item.sub_type == POT_DECAY + || item.sub_type == POT_MUTATION); break; case OBJ_BOOKS: retval = is_chaotic_spellbook(item); -- cgit v1.2.3-54-g00ecf