From 03527cc8ab95931ba6204b54ae3172bd7e008b63 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Sat, 14 Oct 2023 12:37:15 +0200 Subject: fix: FLN reinforcement undo doesn't work --- rules.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rules.js b/rules.js index d663ffb..b7cdd77 100644 --- a/rules.js +++ b/rules.js @@ -1999,27 +1999,33 @@ states.fln_reinforcement = { build_cadre() { let unit = pop_selected() let loc = unit_loc(unit) + push_undo() build_fln_unit(CADRE, loc) }, build_band() { let unit = pop_selected() let loc = unit_loc(unit) + push_undo() build_fln_unit(BAND, loc) }, convert_front_to_cadre() { let unit = pop_selected() + push_undo() convert_fln_unit(unit, CADRE) }, convert_cadre_to_front() { let unit = pop_selected() + push_undo() convert_fln_unit(unit, FRONT) }, convert_cadre_to_band() { let unit = pop_selected() + push_undo() convert_fln_unit(unit, BAND) }, convert_band_to_failek() { let unit = pop_selected() + push_undo() convert_fln_unit(unit, FAILEK) }, end_reinforcement() { -- cgit v1.2.3