summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 8cc33fbc8c..e150201a28 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -3712,9 +3712,8 @@ bool god_hates_spell_type(spell_type spell, god_type god)
case GOD_SHINING_ONE:
// TSO hates using poison, but is fine with curing it, resisting
// it, or destroying it.
- if ((disciplines & SPTYP_POISON) && spell != SPELL_CURE_POISON_I
- && spell != SPELL_CURE_POISON_II && spell != SPELL_RESIST_POISON
- && spell != SPELL_IGNITE_POISON)
+ if ((disciplines & SPTYP_POISON) && spell != SPELL_CURE_POISON
+ && spell != SPELL_RESIST_POISON && spell != SPELL_IGNITE_POISON)
{
return (true);
}