From 93ab8ecedfd7468f0f62d9365a521e42e129abc4 Mon Sep 17 00:00:00 2001 From: Tabby <41929769+tabby-cat-nya@users.noreply.github.com> Date: Fri, 23 Jan 2026 16:52:07 +1100 Subject: [PATCH] fixed travel blocker --- scenes/workshop.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scenes/workshop.gd b/scenes/workshop.gd index bae5b14..50d930b 100644 --- a/scenes/workshop.gd +++ b/scenes/workshop.gd @@ -12,8 +12,8 @@ func _ready() -> void: # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: - Locations.block_moving = crafting_inv.filled_slots() > 0 - Locations.block_moving = trash_inv.filled_slots() > 0 + Locations.block_moving = crafting_inv.filled_slots() > 0 or trash_inv.filled_slots() > 0 + #if crafting_inv.filled_slots() > 0: #ewaste_button.disabled = true #computer_button.disabled = true