summaryrefslogtreecommitdiff
path: root/events.txt
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-04-30 18:22:59 +0200
committerTor Andersson <tor@ccxvii.net>2023-05-03 18:48:16 +0200
commit0f50b753f41d035dc5c9e799cc2aa061a547d38e (patch)
tree1f84f467a8f015c55cf2b7bfd92c3f329bceba1a /events.txt
parent2a870a0df343cd07858631232d5793bc44d2ae35 (diff)
downloadandean-abyss-0f50b753f41d035dc5c9e799cc2aa061a547d38e.tar.gz
Fix Riverines crash if impossible.
Diffstat (limited to 'events.txt')
-rw-r--r--events.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/events.txt b/events.txt
index 7ac5fef..489dbf0 100644
--- a/events.txt
+++ b/events.txt
@@ -1151,7 +1151,7 @@ EVENT 69
endspace
endif
prompt "Select destination Department."
- space 1 (s !== game.vm.m[0]) && is_within_adjacent_depts(s, game.vm.m[0], 3) && can_stack_any(s, game.current)
+ space 1 game.vm.m && (s !== game.vm.m[0]) && is_within_adjacent_depts(s, game.vm.m[0], 3) && can_stack_any(s, game.current)
if game.current === GOVT
prompt "Move cubes to destination."
piece_undo_opt all (s === game.vm.m[0]) && is_cube(p) && can_stack_any(s, GOVT)