diff options
-rw-r--r-- | events.txt | 2 | ||||
-rw-r--r-- | rules.js | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -77,7 +77,7 @@ SHADED 5 EVENT 6 prompt "Select Opposition or Neutral Departments adjacent to Sabotage." - space 2 is_pop(s) && !is_support(s) && is_adjacent_to_sabotage(s) + space 2 is_dept(s) && is_pop(s) && !is_support(s) && is_adjacent_to_sabotage(s) set_passive_support endspace @@ -8537,7 +8537,7 @@ CODE[5 * 2 + 1] = [ // EVENT 6 CODE[6 * 2 + 0] = [ [ vm_prompt, "Select Opposition or Neutral Departments adjacent to Sabotage." ], - [ vm_space, true, 2, 2, (s)=>is_pop(s) && !is_support(s) && is_adjacent_to_sabotage(s) ], + [ vm_space, true, 2, 2, (s)=>is_dept(s) && is_pop(s) && !is_support(s) && is_adjacent_to_sabotage(s) ], [ vm_set_passive_support ], [ vm_endspace ], [ vm_return ], |