summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-04 23:02:18 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-04 23:02:18 +0000
commitae8b9d93ae9dfe0df789c4867fbd5aeff695c6df (patch)
tree4a0695dac4cc6a127d5ace7163c598af7ea596cb /crawl-ref/source/output.cc
parente286813813d43276645532721311960f8178faa7 (diff)
downloadcrawl-ref-ae8b9d93ae9dfe0df789c4867fbd5aeff695c6df.tar.gz
crawl-ref-ae8b9d93ae9dfe0df789c4867fbd5aeff695c6df.zip
Better feedback for Beogh water walking.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1751 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 212d51df25..5f9ce21e6f 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -1670,6 +1670,14 @@ std::string status_mut_abilities()
have_any = true;
}
+ if ( beogh_water_walk() )
+ {
+ if (have_any)
+ text += ", ";
+ text += "water walking";
+ have_any = true;
+ }
+
for (unsigned i = 0; i < NUM_MUTATIONS; i++)
{
if (!you.mutation[i])