diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-01-19 14:30:58 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-17 12:53:18 +0100 |
commit | c7f8596e8fa6aba108f6ff92791d0e9f4b41d39c (patch) | |
tree | 080c398b66266833cf360907fdb4d6f9c9111f54 /rules.js | |
parent | a8d7869b88e534a98aec5e97bf87ce8d3fd7a419 (diff) | |
download | hammer-of-the-scots-c7f8596e8fa6aba108f6ff92791d0e9f4b41d39c.tar.gz |
Log hits taken in battle.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1736,6 +1736,7 @@ function goto_battle_hits() { function apply_hit(who) { game.flash = block_name(who) + " takes a hit."; + log_battle(block_name(who) + " takes a hit."); reduce_block(who, 'combat'); game.hits--; if (game.victory) |