diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-01-19 14:31:54 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:08:56 +0100 |
commit | d6a29f0a502d416e25b16a0903abe7a383bc418c (patch) | |
tree | a469a1798d8992ac547bc49a130e966be283ab79 | |
parent | eed29c9d8bf042633f1b74eec3c6e00f7256d98e (diff) | |
download | julius-caesar-d6a29f0a502d416e25b16a0903abe7a383bc418c.tar.gz |
Log combat hits.
-rw-r--r-- | rules.js | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2051,7 +2051,8 @@ function list_victims(p) { function apply_hit(who) { game.flash = block_name(who) + " takes a hit."; - reduce_block(who, 'combat'); + log_battle(block_name(who) + " takes a hit."); + reduce_block(who); game.hits--; if (game.hits === 0) resume_battle(); @@ -2464,7 +2465,6 @@ exports.ready = function (scenario, options, players) { exports.setup = function (seed, scenario, options) { game = { seed: seed, - tournament: options && options.tournament ? 1 : 0, c_hand: [], p_hand: [], c_card: 0, @@ -2486,6 +2486,9 @@ exports.setup = function (seed, scenario, options) { log: [], }; + if (options && options.tournament) + game.tournament = 1; + // Option for backwards compatible replays. if (options && options.automatic_disruption) game.automatic_disruption = 1; |