summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/goditem.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-05 16:01:34 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-05 16:01:34 -0600
commit05a0629e1831ccdee8b2dd2ba7dee555496ae743 (patch)
tree1e0ee07189c3eb1b2b9052fc3407d19e34c63798 /crawl-ref/source/goditem.cc
parent09b6736c53d8320cb57f16cc0130fc230a8dd37e (diff)
downloadcrawl-ref-05a0629e1831ccdee8b2dd2ba7dee555496ae743.tar.gz
crawl-ref-05a0629e1831ccdee8b2dd2ba7dee555496ae743.zip
Properly mark Porkalator as a chaotic spell.
Diffstat (limited to 'crawl-ref/source/goditem.cc')
-rw-r--r--crawl-ref/source/goditem.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/goditem.cc b/crawl-ref/source/goditem.cc
index c04c023596..d4515724e2 100644
--- a/crawl-ref/source/goditem.cc
+++ b/crawl-ref/source/goditem.cc
@@ -264,7 +264,8 @@ bool is_chaotic_spell(spell_type spell, god_type god)
return (spell == SPELL_POLYMORPH_OTHER
|| spell == SPELL_ALTER_SELF
- || spell == SPELL_SUMMON_UGLY_THING);
+ || spell == SPELL_SUMMON_UGLY_THING
+ || spell == SPELL_PORKALATOR);
}
bool is_hasty_spell(spell_type spell, god_type god)