From 8c864e8f3334e9db87572e51053d5df5c3bb8f51 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Thu, 29 Mar 2007 17:13:47 +0000 Subject: Poison damage threshold was too high. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1122 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/fight.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/fight.cc') diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc index 39342aa138..a59d082be9 100644 --- a/crawl-ref/source/fight.cc +++ b/crawl-ref/source/fight.cc @@ -2630,7 +2630,7 @@ void melee_attack::mons_do_poison(const mon_attack_def &attk) if (attk.flavour == AF_POISON_NASTY || one_chance_in( 15 + 5 * (attk.flavour == AF_POISON) ) - || (damage_done > 2 + || (damage_done > 1 && one_chance_in( attk.flavour == AF_POISON? 4 : 3 ))) { if (needs_message) -- cgit v1.2.3-54-g00ecf