summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-23 17:36:38 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-23 17:36:38 +0000
commit5e736681c8268f0584e89bc9db457bd5d77904e9 (patch)
tree526de64550a43de58cca3ab0944f1b019640761e
parent308065d4bc4146d7ffdcba3c1bad2af6a3c08e9d (diff)
downloadcrawl-ref-5e736681c8268f0584e89bc9db457bd5d77904e9.tar.gz
crawl-ref-5e736681c8268f0584e89bc9db457bd5d77904e9.zip
Tweak non-healing message for starving vampires to match that from deep
dwarves. It's not the same thing, but "not healing naturally" is clearer than "not healing", since starving vampires can still be healed by external means. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9175 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/mutation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index 9dc7982799..4f25a80bbb 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -1210,7 +1210,7 @@ formatted_string describe_mutations()
case SP_VAMPIRE:
have_any = true;
if (you.hunger_state == HS_STARVING)
- result += "<green>You do not heal.</green>" EOL;
+ result += "<green>You do not heal naturally.</green>" EOL;
else if (you.hunger_state == HS_ENGORGED)
result += "<green>Your natural rate of healing is extremely fast.</green>" EOL;
else if (you.hunger_state <= HS_HUNGRY)