summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-29 09:02:40 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-29 09:02:40 +0000
commit07a0e09b11917bebd145b44d85cb6a44a79fd472 (patch)
tree87cf316710aabf5272d7f07727e80421e674a469
parent01de76e22b1357d5cb93916e9c51538599461379 (diff)
downloadcrawl-ref-07a0e09b11917bebd145b44d85cb6a44a79fd472.tar.gz
crawl-ref-07a0e09b11917bebd145b44d85cb6a44a79fd472.zip
I think I prefer "HP restored" to "Health restored".
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@721 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/travel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc
index bc8d909dd2..e2af8832df 100644
--- a/crawl-ref/source/travel.cc
+++ b/crawl-ref/source/travel.cc
@@ -3178,7 +3178,7 @@ void runrest::check_hp()
{
if (is_rest() && you.hp == you.hp_max && you.hp > hp)
{
- mpr("Health restored.");
+ mpr("HP restored.");
stop();
}
}