summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.h
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-01-29 17:52:55 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-01-29 17:52:55 +0000
commit6319e4977d2fa6f253e0243c61b8af8c88647805 (patch)
tree228357eb9a0a532e2350c22dc3c4f3c367295694 /crawl-ref/source/spl-cast.h
parent18f63ac068e0ad2faa884b791aaabbdcf68350c2 (diff)
downloadcrawl-ref-6319e4977d2fa6f253e0243c61b8af8c88647805.tar.gz
crawl-ref-6319e4977d2fa6f253e0243c61b8af8c88647805.zip
Don't shadow mimic spells that don't target monsters
Which is currently just Dig, out of the previous set of mimicable spells.
Diffstat (limited to 'crawl-ref/source/spl-cast.h')
-rw-r--r--crawl-ref/source/spl-cast.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-cast.h b/crawl-ref/source/spl-cast.h
index 0eb7dc59fb..bb948a4b1c 100644
--- a/crawl-ref/source/spl-cast.h
+++ b/crawl-ref/source/spl-cast.h
@@ -16,7 +16,7 @@ enum spflag_type
SPFLAG_GRID = 0x000004, // use DIR_GRID targeting
SPFLAG_DIR = 0x000008, // use DIR_DIR targeting
SPFLAG_TARG_OBJ = 0x000010, // use DIR_TARGET_OBJECT targ.
- SPFLAG_TARGETING_MASK = 0x00001f, // used to test for targeting
+ SPFLAG_TARGETING_MASK = 0x00001f, // used to test for targeting
SPFLAG_HELPFUL = 0x000020, // TARG_FRIENDS used
SPFLAG_NEUTRAL = 0x000040, // TARG_ANY used
SPFLAG_NOT_SELF = 0x000080, // aborts on isMe