summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;