From 4ec601cafab00c36a3d762ef23c4c31b6267e813 Mon Sep 17 00:00:00 2001 From: Jude Brown Date: Sun, 29 Nov 2009 13:13:29 +1000 Subject: 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. --- crawl-ref/source/ouch.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/ouch.cc') 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; -- cgit v1.2.3-54-g00ecf