summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cloud.cc
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-11-12 04:34:15 -0800
committerMatthew Cline <zelgadis@sourceforge.net>2009-11-12 04:36:18 -0800
commit5845f866b75bc4ac2aa470e4abdd404684dc45e0 (patch)
tree34b61e3050ee3b61bee8af39fbb4dea11badaa29 /crawl-ref/source/cloud.cc
parentd518ae51c1ee912985673d3fdafd8ce61fa149eb (diff)
downloadcrawl-ref-5845f866b75bc4ac2aa470e4abdd404684dc45e0.tar.gz
crawl-ref-5845f866b75bc4ac2aa470e4abdd404684dc45e0.zip
cloud.cc: KC_OTHER -> KILL_MISC
cloud_struct::whose_to_killer() maps KC_OTHER to KILL_MISC
Diffstat (limited to 'crawl-ref/source/cloud.cc')
-rw-r--r--crawl-ref/source/cloud.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/cloud.cc b/crawl-ref/source/cloud.cc
index fda354706a..b1a6069c50 100644
--- a/crawl-ref/source/cloud.cc
+++ b/crawl-ref/source/cloud.cc
@@ -925,7 +925,7 @@ killer_type cloud_struct::whose_to_killer(kill_category whose)
{
case KC_YOU: return(KILL_YOU_MISSILE);
case KC_FRIENDLY: return(KILL_MON_MISSILE);
- case KC_OTHER: return(KILL_MON_MISSILE);
+ case KC_OTHER: return(KILL_MISC);
case KC_NCATEGORIES: ASSERT(false);
}
return (KILL_NONE);