summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/goditem.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-06-06 12:12:44 -0400
committerNeil Moore <neil@s-z.org>2014-06-06 12:20:53 -0400
commit27d8d3e4d69f909334ba85ea15586b2b1a721c87 (patch)
tree9d955c9047af1b185132e2340793ed5f7688429d /crawl-ref/source/goditem.cc
parentacf1c2352c425cd0a0069116e28d240042ce1cbb (diff)
downloadcrawl-ref-27d8d3e4d69f909334ba85ea15586b2b1a721c87.tar.gz
crawl-ref-27d8d3e4d69f909334ba85ea15586b2b1a721c87.zip
Allow inner flaming allies.
Diffstat (limited to 'crawl-ref/source/goditem.cc')
-rw-r--r--crawl-ref/source/goditem.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/goditem.cc b/crawl-ref/source/goditem.cc
index 8bede65dfd..c1fb6394ff 100644
--- a/crawl-ref/source/goditem.cc
+++ b/crawl-ref/source/goditem.cc
@@ -698,6 +698,10 @@ bool god_dislikes_spell_type(spell_type spell, god_type god)
// effect, are risky to use, or would otherwise amuse him, but
// that would be a really small number of spells.
+ // Neutral, but in an amusing way.
+ if (spell == SPELL_INNER_FLAME)
+ return false;
+
// Xom would probably find these extra boring.
if (flags & (SPFLAG_HELPFUL | SPFLAG_NEUTRAL | SPFLAG_ESCAPE
| SPFLAG_RECOVERY))