From 32e36581cd8711538f523b698d99b770a1cc553c Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Mon, 28 Sep 2009 08:47:53 -0500 Subject: Add minor cosmetic fixes. --- 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 ae7b2b8ff8..8c650f3854 100644 --- a/crawl-ref/source/fight.cc +++ b/crawl-ref/source/fight.cc @@ -5437,7 +5437,7 @@ bool monster_attack(monsters* attacker, bool allow_unarmed) // In case the monster hasn't noticed you, bumping into it will // change that. - behaviour_event( attacker, ME_ALERT, MHITYOU ); + behaviour_event(attacker, ME_ALERT, MHITYOU); melee_attack attk(attacker, &you, allow_unarmed); attk.attack(); @@ -5449,7 +5449,7 @@ bool monsters_fight(monsters* attacker, monsters* defender, bool allow_unarmed) { melee_attack attk(attacker, defender, allow_unarmed); - return attk.attack(); + return (attk.attack()); } -- cgit v1.2.3-54-g00ecf