summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-13 18:46:23 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-13 18:46:23 +0000
commit1bb4f01f6576b82fbaa24c30961f12fba5b3e07d (patch)
treeed49e341b63064be901fa1d72de2843150e917f8
parenteaa52e83a89d49475ee00812ebcf0fe7caa89980 (diff)
downloadcrawl-ref-1bb4f01f6576b82fbaa24c30961f12fba5b3e07d.tar.gz
crawl-ref-1bb4f01f6576b82fbaa24c30961f12fba5b3e07d.zip
Fix [2686115]: Remove references to the clarity mutation's having three
levels, since it only has one. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9429 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/mutation.cc14
-rw-r--r--crawl-ref/source/output.cc3
2 files changed, 4 insertions, 13 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index bb08fc932f..cf01dc25be 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -586,17 +586,9 @@ mutation_def mutation_defs[] = {
"scream"
},
{ MUT_CLARITY, 6, 1, false, false,
- {"You possess an exceptional clarity of mind.",
- "You possess an unnatural clarity of mind.",
- "You possess a supernatural clarity of mind."},
-
- {"Your thoughts seem clearer.",
- "Your thoughts seem clearer.",
- "Your thoughts seem clearer."},
-
- {"Your thinking seems confused.",
- "Your thinking seems confused.",
- "Your thinking seems confused."},
+ {"You possess an exceptional clarity of mind.", "", ""},
+ {"Your thoughts seem clearer.", "", ""},
+ {"Your thinking seems confused.", "", ""},
"clarity"
},
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 601b9bc0e3..f4e638d309 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2768,8 +2768,7 @@ std::string _status_mut_abilities()
current = info;
break;
case MUT_CLARITY:
- snprintf(info, INFO_SIZE, "clarity %d", level);
- current = info;
+ current = "clarity";
break;
case MUT_BERSERK:
snprintf(info, INFO_SIZE, "berserk %d", level);