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.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index fe421df57b..1ba39f706e 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -969,7 +969,7 @@ bool melee_attack::player_aux_unarmed()
if ((you.attribute[ATTR_TRANSFORMATION] == TRAN_DRAGON
|| player_genus(GENPC_DRACONIAN)
|| (you.species == SP_MERFOLK && player_is_swimming())
- || player_mutation_level( MUT_STINGER ))
+ || player_mutation_level(MUT_STINGER))
&& one_chance_in(3))
{
uattack = UNAT_TAILSLAP;
@@ -1100,9 +1100,9 @@ bool melee_attack::player_aux_unarmed()
unarmed_attack = "tail-slap";
aux_damage = 6;
- if (player_mutation_level( MUT_STINGER ) > 0)
+ if (player_mutation_level(MUT_STINGER) > 0)
{
- aux_damage += (player_mutation_level( MUT_STINGER ) * 2 - 1);
+ aux_damage += (player_mutation_level(MUT_STINGER) * 2 - 1);
damage_brand = SPWPN_VENOM;
}