diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-04-28 23:58:15 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | 05c6b647cc2c628755d03ecf3532777b65bd377b (patch) | |
tree | 045c511ba01fc2133b04fb3df2202c98c4ae1789 /rules.js | |
parent | 024da16265c6edd76eb53b790602ab5384d4f8ba (diff) | |
download | andean-abyss-05c6b647cc2c628755d03ecf3532777b65bd377b.tar.gz |
Add missing log line for free Bribe.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -1,17 +1,9 @@ "use strict" -// TODO: free Bribe (event 60) needs logging info - -// TODO: log_br after free op/special - // TODO: if Assault and no valid assault targets, only allow air lift to enable Assault // TODO: can_...operation - for space = ... check them all / can_rally - check that it is dept/city etc -// Captured Good - may not remove -// Commandeer - may not remove -// Contraband - if removed - cartels decide who gets it - const AUTOMATIC = true const PATROL_UNDO = true @@ -2598,6 +2590,7 @@ states.ship_limop = { } function end_operation() { + log_br() if (game.op.ship && is_any_shipment_held()) { push_undo() game.state = "ship" @@ -5686,6 +5679,7 @@ function vm_free_bribe() { game.sa.where = game.vm.s game.sa.targeted = 0 game.state = "bribe_space" + log_space(game.sa.where, "Bribe") } function goto_bribe() { |