diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-06-23 18:07:18 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-07-07 18:39:37 +0200 |
commit | 4251b1dedc84f8622355542be7d64a020f398a26 (patch) | |
tree | 0cdf550fe9d30191d8e0a0827489ab18798c2e22 /rules.js | |
parent | 55578bb49831b1636e0a3ec6826d5a0844b953b0 (diff) | |
download | time-of-crisis-4251b1dedc84f8622355542be7d64a020f398a26.tar.gz |
Start log formatting.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -990,7 +990,7 @@ function roll_dice(count, target) { summary.push("W" + die) } } - log("Rolled " + summary.join(" ")) + logi(summary.join(" ")) count = sixes } return hits @@ -1008,7 +1008,7 @@ function roll_dice_no_reroll(count, target) { summary.push("W" + die) } } - log("Rolled " + summary.join(" ")) + logi(summary.join(" ")) return hits } @@ -1336,7 +1336,7 @@ function goto_barbarian_invasion(tribe, black, white) { logi("Invasion!") game.count = game.dice[2] - // Ardashir: ALL active Sassanids invade! + // Ardashir: All active Sassanids invade! if (tribe === SASSANIDS) { if (get_barbarian_location(ARDASHIR) === SASSANIDS_HOMELAND) game.count = count_active_barbarians_at_home(tribe) |