summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/fight.h')
-rw-r--r--crawl-ref/source/fight.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/fight.h b/crawl-ref/source/fight.h
index 02d01c618c..7ad6255645 100644
--- a/crawl-ref/source/fight.h
+++ b/crawl-ref/source/fight.h
@@ -69,14 +69,15 @@ bool you_attack(int monster_attacked, bool unarmed_attacks);
/* ***********************************************************************
* called from: monstuff
* *********************************************************************** */
-bool monster_attack(int monster_attacking);
+bool monster_attack(int monster_attacking, bool allow_unarmed = true);
// last updated: 08jun2000 {dlb}
/* ***********************************************************************
* called from: monstuff
* *********************************************************************** */
-bool monsters_fight(int monster_attacking, int monster_attacked);
+bool monsters_fight(int monster_attacking, int monster_attacked,
+ bool allow_unarmed = true);
int calc_your_to_hit( bool random_factor );