From 44c5dfbf92fced55363024d980d24a13203ba604 Mon Sep 17 00:00:00 2001 From: Jennie Robinson Faber Date: Mon, 18 May 2026 14:09:55 +0100 Subject: [PATCH] Fix the robot cheating --- scenes/robot.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/robot.gd b/scenes/robot.gd index 1f7c46f..bddaeec 100644 --- a/scenes/robot.gd +++ b/scenes/robot.gd @@ -20,7 +20,7 @@ var safety_zone: Area3D func _ready() -> void: _spawn_transform = transform EventBus.doors_opened.connect(func(): doors_open = true) - EventBus.doors_fully_closed.connect(func(): doors_open = false) + EventBus.doors_closed.connect(func(_fast: bool): doors_open = false) EventBus.robot_stun_requested.connect(func(d: float): stun_remaining += d) EventBus.robot_floor_started.connect(_on_floor_started)