summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-12-27 15:35:16 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-12-27 15:37:47 +0100
commit21c3ed598c240e9ab0bcb856c6dc84d2cee11f99 (patch)
tree3c3ace3acd3c520394a24b5c3568cc307240d865
parent8b00e0051117ac616b658fddddfc61451aaf5e74 (diff)
downloadcrawl-ref-21c3ed598c240e9ab0bcb856c6dc84d2cee11f99.tar.gz
crawl-ref-21c3ed598c240e9ab0bcb856c6dc84d2cee11f99.zip
Use the old message for rain, "You are engulfed in the rain." is bad.
-rw-r--r--crawl-ref/source/cloud.cc5
1 files changed, 4 insertions, 1 deletions
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;