summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fineff.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-01-24 18:29:37 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-01-24 18:29:37 -0600
commitb623f85c8488fb414c47b5e41a747a21ac6b7f14 (patch)
treeedb6a45488fc6ff9630c1bdb9b8586d3fee56902 /crawl-ref/source/fineff.cc
parentb651648578407116b69a2df07c9953f5064df609 (diff)
downloadcrawl-ref-b623f85c8488fb414c47b5e41a747a21ac6b7f14.tar.gz
crawl-ref-b623f85c8488fb414c47b5e41a747a21ac6b7f14.zip
Change the monster-inflicted injury mirror message to not use a pronoun.
"It" is not appropriate for monsters with gender or uniques, and we can't get the proper pronoun if the monster is dead from the damage anyway.
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 a506e6b6f9..22ace09c1d 100644
--- a/crawl-ref/source/fineff.cc
+++ b/crawl-ref/source/fineff.cc
@@ -139,7 +139,7 @@ void mirror_damage_fineff::fire()
if (att == MID_PLAYER)
{
- mpr("It reflects your damage back at you!");
+ mpr("Your damage is reflected back at you!");
ouch(damage, NON_MONSTER, KILLED_BY_MIRROR_DAMAGE);
}
else if (def == MID_PLAYER)