summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/xom.cc
diff options
context:
space:
mode:
authorreaver <address.auto@gmail.com>2014-03-10 21:25:26 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-03-10 23:52:54 -0400
commit29e27d4c4692d43a1312f70c09a068cbe15eeee5 (patch)
tree595e28f00011cf3170c00e85c902127a9d067e05 /crawl-ref/source/xom.cc
parent4b56c9bb8ad6e11303be8ec33d6050c7090157a9 (diff)
downloadcrawl-ref-29e27d4c4692d43a1312f70c09a068cbe15eeee5.tar.gz
crawl-ref-29e27d4c4692d43a1312f70c09a068cbe15eeee5.zip
Potion of speed => Potion of haste
Changes everything, including vaults, the enum (now POT_HASTE) and the .txt files in /dat/descript (things like hints.txt and foreign language description files).
Diffstat (limited to 'crawl-ref/source/xom.cc')
-rw-r--r--crawl-ref/source/xom.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/xom.cc b/crawl-ref/source/xom.cc
index 89fbb53eea..cc52d5bd80 100644
--- a/crawl-ref/source/xom.cc
+++ b/crawl-ref/source/xom.cc
@@ -1064,7 +1064,7 @@ static int _xom_do_potion(bool debug = false)
potion_type pot = POT_CURING;
while (true)
{
- pot = random_choose(POT_CURING, POT_HEAL_WOUNDS, POT_MAGIC, POT_SPEED,
+ pot = random_choose(POT_CURING, POT_HEAL_WOUNDS, POT_MAGIC, POT_HASTE,
POT_MIGHT, POT_AGILITY, POT_BRILLIANCE,
POT_INVISIBILITY, POT_BERSERK_RAGE, POT_EXPERIENCE,
-1);
@@ -1118,7 +1118,7 @@ static int _xom_do_potion(bool debug = false)
case POT_CURING: potion_msg += "(curing)"; break;
case POT_HEAL_WOUNDS: potion_msg += "(heal wounds)"; break;
case POT_MAGIC: potion_msg += "(magic)"; break;
- case POT_SPEED: potion_msg += "(speed)"; break;
+ case POT_HASTE: potion_msg += "(haste)"; break;
case POT_MIGHT: potion_msg += "(might)"; break;
case POT_AGILITY: potion_msg += "(agility)"; break;
case POT_BRILLIANCE: potion_msg += "(brilliance)"; break;