summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ouch.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-11-29 13:13:29 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-11-29 13:15:12 +1000
commit4ec601cafab00c36a3d762ef23c4c31b6267e813 (patch)
tree662f8134172cc62e7d3014a147de6cc418c92895 /crawl-ref/source/ouch.cc
parent400edb7e919f99a9c6caa24dc6e21caf91297f01 (diff)
downloadcrawl-ref-4ec601cafab00c36a3d762ef23c4c31b6267e813.tar.gz
crawl-ref-4ec601cafab00c36a3d762ef23c4c31b6267e813.zip
Clarify rF- messages (TGW).
"It burns terribly" is unclear in some instances, so change to "The fire/the lava burns terribly". Also change "It scalds you terribly" to "The steam scalds you terribly" for steam.
Diffstat (limited to 'crawl-ref/source/ouch.cc')
-rw-r--r--crawl-ref/source/ouch.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/ouch.cc b/crawl-ref/source/ouch.cc
index a08bb2368f..d2f1b49008 100644
--- a/crawl-ref/source/ouch.cc
+++ b/crawl-ref/source/ouch.cc
@@ -100,7 +100,7 @@ int check_your_resists(int hurted, beam_type flavour)
canned_msg(MSG_YOU_RESIST);
else if (hurted > original)
{
- mpr("It scalds you terribly!");
+ mpr("The steam scalds you terribly!");
xom_is_stimulated(200);
}
break;
@@ -112,7 +112,7 @@ int check_your_resists(int hurted, beam_type flavour)
canned_msg(MSG_YOU_RESIST);
else if (hurted > original)
{
- mpr("It burns terribly!");
+ mpr("The fire burns terribly!");
xom_is_stimulated(200);
}
break;
@@ -204,7 +204,7 @@ int check_your_resists(int hurted, beam_type flavour)
canned_msg(MSG_YOU_PARTIALLY_RESIST);
else if (hurted > original)
{
- mpr("It burns terribly!");
+ mpr("The lava burns terribly!");
xom_is_stimulated(200);
}
break;