summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-info.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-01-03 18:38:39 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-01-03 19:17:36 +0000
commit16c4a219577c59250b33d5bc75b4b3d2ddca677f (patch)
treefa3e48e08392b0d4dee37ba803d70710cb21ebe9 /crawl-ref/source/mon-info.cc
parente89080694b5b4fc912bf1c0fddaf907dce8be76c (diff)
downloadcrawl-ref-16c4a219577c59250b33d5bc75b4b3d2ddca677f.tar.gz
crawl-ref-16c4a219577c59250b33d5bc75b4b3d2ddca677f.zip
Clarify is_spellcaster vs is_caster in monster_info
Diffstat (limited to 'crawl-ref/source/mon-info.cc')
-rw-r--r--crawl-ref/source/mon-info.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-info.cc b/crawl-ref/source/mon-info.cc
index 904fe64c47..549132c9a2 100644
--- a/crawl-ref/source/mon-info.cc
+++ b/crawl-ref/source/mon-info.cc
@@ -688,7 +688,7 @@ monster_info::monster_info(const monster* m, int milev)
if (m->is_priest())
this->props["priest"] = true;
else if (m->is_actual_spellcaster())
- this->props["caster"] = true;
+ this->props["actual_spellcaster"] = true;
}
for (unsigned i = 0; i <= MSLOT_LAST_VISIBLE_SLOT; ++i)