summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mon-util.cc')
-rw-r--r--crawl-ref/source/mon-util.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index 2386659f0c..79d5709bdf 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -5750,14 +5750,14 @@ void monsters::apply_enchantment(const mon_enchant &me)
int dam = (poisonval >= 4) ? 1 : 0;
if (coinflip())
- dam += roll_dice( 1, poisonval + 1 );
+ dam += roll_dice(1, poisonval + 1);
if (mons_res_poison(this) < 0)
- dam += roll_dice( 2, poisonval ) - 1;
+ dam += roll_dice(2, poisonval) - 1;
if (dam > 0)
{
- hurt_monster( this, dam );
+ hurt_monster(this, dam);
#if DEBUG_DIAGNOSTICS
// For debugging, we don't have this silent.
@@ -5798,7 +5798,7 @@ void monsters::apply_enchantment(const mon_enchant &me)
if (dam > 0)
{
- hurt_monster( this, dam );
+ hurt_monster(this, dam);
simple_monster_message(this, " burns!");
#if DEBUG_DIAGNOSTICS