summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc4
1 files changed, 2 insertions, 2 deletions
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;