From 21c3ed598c240e9ab0bcb856c6dc84d2cee11f99 Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Sun, 27 Dec 2009 15:35:16 +0100 Subject: Use the old message for rain, "You are engulfed in the rain." is bad. --- crawl-ref/source/cloud.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crawl-ref/source/cloud.cc b/crawl-ref/source/cloud.cc index bd5670b846..58eb185c97 100644 --- a/crawl-ref/source/cloud.cc +++ b/crawl-ref/source/cloud.cc @@ -813,7 +813,10 @@ void in_a_cloud() you.duration[DUR_MISLED] = 0; } - mprf("You are engulfed in %s.", !name.empty() ? name.c_str() : "the rain"); + if (name.empty() || name == "the rain") + mpr("You are standing in the rain."); + else + mprf("You are engulfed in %s.", name.c_str()); break; -- cgit v1.2.3-54-g00ecf