summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-07 13:55:07 +0300
committerJude Brown <bookofjude@users.sourceforge.net>2009-11-07 22:21:47 +1000
commit96b804bb7a2bdc6ad25c6b45975bc0d4c8f19fbb (patch)
treeb10efdcb7b4462e2c3ab8c45a2d8ee79193433cd /crawl-ref/source/spells4.cc
parentdac82a0df3f00244f7d72e8dc5ccb7551c12886e (diff)
downloadcrawl-ref-96b804bb7a2bdc6ad25c6b45975bc0d4c8f19fbb.tar.gz
crawl-ref-96b804bb7a2bdc6ad25c6b45975bc0d4c8f19fbb.zip
Replace uses of mons_is_icy with monsters::is_icy.
Signed-off-by: Jude Brown <bookofjude@users.sourceforge.net>
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index 3a513c8bcc..a03c9ca9c1 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -1487,7 +1487,7 @@ bool cast_fragmentation(int pow, const dist& spd)
break;
default:
- if (mons_is_icy(mon->type)) // blast of ice
+ if (mon->is_icy()) // blast of ice
{
explode = true;
beam.name = "icy blast";