summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-other.cc
diff options
context:
space:
mode:
authorelliptic <hyperelliptical@gmail.com>2014-03-13 12:06:02 -0400
committerelliptic <hyperelliptical@gmail.com>2014-03-13 23:51:32 -0400
commit3c027b61f0f323eddc62729cbf1866f34e992bec (patch)
tree1d08c76419884b0545f980b7d8221bf3df90562b /crawl-ref/source/spl-other.cc
parent3fd807fbee5244ade7096d3afb78d89f0da27f61 (diff)
downloadcrawl-ref-3c027b61f0f323eddc62729cbf1866f34e992bec.tar.gz
crawl-ref-3c027b61f0f323eddc62729cbf1866f34e992bec.zip
Increase the poison scale again.
100 wasn't actually good enough for some changes that need to be made.
Diffstat (limited to 'crawl-ref/source/spl-other.cc')
-rw-r--r--crawl-ref/source/spl-other.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-other.cc b/crawl-ref/source/spl-other.cc
index 9c94f6b84f..2a02cd5d34 100644
--- a/crawl-ref/source/spl-other.cc
+++ b/crawl-ref/source/spl-other.cc
@@ -43,7 +43,7 @@ spret_type cast_cure_poison(int pow, bool fail)
}
fail_check();
- reduce_player_poison((15 + roll_dice(3, pow / 2)) * 100);
+ reduce_player_poison((15 + roll_dice(3, pow / 2)) * 1000);
// A message is already printed if we removed all of the poison
if (you.duration[DUR_POISONING])