summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ghost.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-07 08:29:12 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-03-07 08:29:12 +0000
commit96b50902ceeaf9fe92ff11f114ca01510c02ef77 (patch)
treed5d4a35658a69a7293a2d3263677d025a58e5cf7 /crawl-ref/source/ghost.cc
parent9b9bc38f1eb7e4e2b26d87eba610cbd6ea86984b (diff)
downloadcrawl-ref-96b50902ceeaf9fe92ff11f114ca01510c02ef77.tar.gz
crawl-ref-96b50902ceeaf9fe92ff11f114ca01510c02ef77.zip
Reduce the speed bonus from boots of running for player ghosts
Diffstat (limited to 'crawl-ref/source/ghost.cc')
-rw-r--r--crawl-ref/source/ghost.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/ghost.cc b/crawl-ref/source/ghost.cc
index 84ddec8392..95b99aa6f7 100644
--- a/crawl-ref/source/ghost.cc
+++ b/crawl-ref/source/ghost.cc
@@ -364,7 +364,7 @@ static int _player_ghost_base_movement_speed()
speed -= slow + 1;
if (you.wearing_ego(EQ_BOOTS, SPARM_RUNNING))
- speed += 2;
+ speed += 1;
// Cap speeds.
if (speed < MIN_GHOST_SPEED)