diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-04-24 21:38:29 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | 4fdda6328e67b25db6ff30c0f18fb7d5ffef97b9 (patch) | |
tree | 1ea2fb072131c5bce020dad8d009317bb78b8fec /events.txt | |
parent | 3763ffe1363a9e5837d2ae9d048dc7d66ef39005 (diff) | |
download | andean-abyss-4fdda6328e67b25db6ff30c0f18fb7d5ffef97b9.tar.gz |
Fix free Assault events.
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -384,7 +384,9 @@ EVENT 29 piece all is_piece_in_event_space(p) && is_farc_guerrilla(p) && is_underground(p) activate endpiece - free_assault + if can_assault_in_space(game.vm.s) + free_assault + endif endspace SHADED 29 @@ -699,9 +701,9 @@ EVENT 47 endif current GOVT prompt "All Police free Assault AUC as if Troops." - space all has_police(s) && has_auc_piece(s) - # TODO: test this + space all can_assault_in_space_faction(s, AUC) free_assault_auc + # TODO transfer dropped shipments early endspace SHADED 47 |