summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fineff.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2013-01-17 18:14:07 +0000
committerChris Campbell <chriscampbell89@gmail.com>2013-01-17 18:14:07 +0000
commitbabae3465b102e894c5ddf6d35d844601bbab279 (patch)
treee1ee3d4824728ffb15140882cc9ea1b4083feae1 /crawl-ref/source/fineff.cc
parentc46dff13ba9fa874c8f9820535d0c1417b792c51 (diff)
downloadcrawl-ref-babae3465b102e894c5ddf6d35d844601bbab279.tar.gz
crawl-ref-babae3465b102e894c5ddf6d35d844601bbab279.zip
Give mirror damage its own kill_method_type
KILLED_BY_REFLECTION was intended for shields of reflection, and produced awkward messages for mirror damage deaths.
Diffstat (limited to 'crawl-ref/source/fineff.cc')
-rw-r--r--crawl-ref/source/fineff.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/fineff.cc b/crawl-ref/source/fineff.cc
index 83c8aef33b..a506e6b6f9 100644
--- a/crawl-ref/source/fineff.cc
+++ b/crawl-ref/source/fineff.cc
@@ -140,7 +140,7 @@ void mirror_damage_fineff::fire()
if (att == MID_PLAYER)
{
mpr("It reflects your damage back at you!");
- ouch(damage, NON_MONSTER, KILLED_BY_REFLECTION);
+ ouch(damage, NON_MONSTER, KILLED_BY_MIRROR_DAMAGE);
}
else if (def == MID_PLAYER)
{