summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/mutation.cc8
-rw-r--r--crawl-ref/source/output.cc3
2 files changed, 5 insertions, 6 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index 1d89da8ea2..650b80dde6 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -416,9 +416,7 @@ mutation_def mutation_defs[] = {
"fast"
},
{ MUT_ACUTE_VISION, 2, 1, false, false,
- {"You have supernaturally acute eyesight.",
- "You have supernaturally acute eyesight.",
- "You have supernaturally acute eyesight."},
+ {"You have supernaturally acute eyesight.", "", ""},
{"Your vision sharpens.",
"Your vision sharpens.",
@@ -462,8 +460,8 @@ mutation_def mutation_defs[] = {
},
{ MUT_SPIT_POISON, 8, 3, false, false,
{"You can spit poison.",
- "You can spit poison.",
- "You can spit poison."},
+ "You can spit moderately strong poison.",
+ "You can spit strong poison."},
{"There is a nasty taste in your mouth for a moment.",
"There is a nasty taste in your mouth for a moment.",
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index cd3e925a49..1eb6726ae1 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2840,7 +2840,8 @@ std::string _status_mut_abilities()
current = info;
break;
case MUT_SPIT_POISON:
- current = "spit poison";
+ snprintf(info, INFO_SIZE, "spit poison %d", level);
+ current = info;
break;
case MUT_MAPPING:
snprintf(info, INFO_SIZE, "sense surroundings %d", level);