From 65ad20dff06c085e329e627ddeebe8a1deca6d04 Mon Sep 17 00:00:00 2001 From: dolorous Date: Sun, 16 Nov 2008 18:20:22 +0000 Subject: Add a few more poison-related cleanups. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7449 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/fight.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/fight.cc') diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc index 48a8b22f41..cf3174a320 100644 --- a/crawl-ref/source/fight.cc +++ b/crawl-ref/source/fight.cc @@ -3594,9 +3594,9 @@ void melee_attack::mons_apply_attack_flavour(const mon_attack_def &attk) res = defender->res_poison(); if (res <= 0) { - defender->poison( attacker, roll_dice(1,3) ); + defender->poison(attacker, roll_dice(1, 3)); if (one_chance_in(4)) - defender->drain_stat( STAT_STRENGTH, 1, attacker ); + defender->drain_stat(STAT_STRENGTH, 1, attacker); } break; -- cgit v1.2.3-54-g00ecf