summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mutation.cc')
-rw-r--r--crawl-ref/source/mutation.cc26
1 files changed, 7 insertions, 19 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index b5244c75df..8f2f1985bf 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -1125,17 +1125,16 @@ formatted_string describe_mutations()
break;
case SP_MUMMY:
- result += "You are";
- if (you.experience_level > 25)
- result += " very strongly";
- else if (you.experience_level > 12)
- result += " strongly";
-
- result += " in touch with the powers of death." EOL;
result += "Your flesh is vulnerable to fire." EOL;
-
if (you.experience_level > 12)
+ {
+ result += "You are";
+ if (you.experience_level > 25)
+ result += " strongly";
+
+ result += " in touch with the powers of death." EOL;
result += "You can restore your body by infusing magical energy." EOL;
+ }
have_any = true;
break;
@@ -1218,17 +1217,6 @@ formatted_string describe_mutations()
break;
case SP_VAMPIRE:
- if (you.hunger_state < HS_SATIATED)
- {
- if (you.experience_level >= 13)
- {
- result += "<green>";
- result += "You are";
- result += " in touch with the powers of death." EOL;
- result += "</green>";
- }
- }
-
if (you.hunger_state == HS_STARVING)
result += "<green>You do not heal.</green>" EOL;
else if (you.hunger_state <= HS_HUNGRY)