summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-clone.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-30 23:37:53 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-31 00:16:06 +0200
commitc520501615327e01cdff49bd2da29a6e42d9fd72 (patch)
treeede25ea8ef125e0a34bad078771bece7251a93e2 /crawl-ref/source/mon-clone.cc
parent46d872cc3303949411eb9bd9be482a421b3b833f (diff)
downloadcrawl-ref-c520501615327e01cdff49bd2da29a6e42d9fd72.tar.gz
crawl-ref-c520501615327e01cdff49bd2da29a6e42d9fd72.zip
The haste nerf.
Haste now makes you go at x1.5 speed, not x2 as before. Slow makes you only 1.5 times slower, not 2. Berserk is unchanged -- x2 speed. Issues: * monster berserk is still haste+might * in some cases monster speed may be permanently affected due to round-off errors * the compensation for high-end monsters haven't been applied yet
Diffstat (limited to 'crawl-ref/source/mon-clone.cc')
-rw-r--r--crawl-ref/source/mon-clone.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-clone.cc b/crawl-ref/source/mon-clone.cc
index 29ea25e099..1059e96e81 100644
--- a/crawl-ref/source/mon-clone.cc
+++ b/crawl-ref/source/mon-clone.cc
@@ -165,7 +165,7 @@ enchant_type player_duration_to_mons_enchantment(duration_type dur)
case DUR_SLOW: return ENCH_SLOW;
case DUR_HASTE: return ENCH_HASTE;
case DUR_MIGHT: return ENCH_MIGHT;
- case DUR_BERSERK: return ENCH_BERSERK;
+ case DUR_BERSERK: return ENCH_BERSERK;
case DUR_POISONING: return ENCH_POISON;
case DUR_SWIFTNESS: return ENCH_SWIFT;