summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-24 16:47:33 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-03-24 16:47:33 +0000
commit41e190ba7ba3042c35dc4e9d40d7eba592d961fb (patch)
treebb246ede2eec6299e1f682dbc2f43046d649ba0e /crawl-ref/source/mutation.cc
parent69cae2552ee7a3e77b7abae9949cd936879c3a16 (diff)
downloadcrawl-ref-41e190ba7ba3042c35dc4e9d40d7eba592d961fb.tar.gz
crawl-ref-41e190ba7ba3042c35dc4e9d40d7eba592d961fb.zip
List water walking and ring of flames after innate mutations on A screen
Diffstat (limited to 'crawl-ref/source/mutation.cc')
-rw-r--r--crawl-ref/source/mutation.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index db7b5b4307..3ab0bcd20e 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -660,18 +660,6 @@ string describe_mutations(bool center_title)
result += "</lightblue>";
- if (beogh_water_walk())
- {
- result += "<green>You can walk on water.</green>\n";
- have_any = true;
- }
-
- if (you.duration[DUR_FIRE_SHIELD])
- {
- result += "<green>You are immune to clouds of flame.</green>\n";
- have_any = true;
- }
-
textcolor(LIGHTGREY);
// First add (non-removable) inborn abilities and demon powers.
@@ -686,6 +674,18 @@ string describe_mutations(bool center_title)
}
}
+ if (beogh_water_walk())
+ {
+ result += "<green>You can walk on water.</green>\n";
+ have_any = true;
+ }
+
+ if (you.duration[DUR_FIRE_SHIELD])
+ {
+ result += "<green>You are immune to clouds of flame.</green>\n";
+ have_any = true;
+ }
+
// Now add removable mutations.
for (int i = 0; i < NUM_MUTATIONS; i++)
{