From ee6685eda299bcccd66012643674e91b93c461c3 Mon Sep 17 00:00:00 2001 From: Emerson Rosen-Jones Date: Thu, 1 Jan 2026 15:00:08 -0500 Subject: [PATCH] fix: remove stuck carriage bug Removes bug where carriage would get stuck between floors by calling it to the first floor on program start. --- cargo-elevator.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/cargo-elevator.lua b/cargo-elevator.lua index 6aadb4b..88ffd27 100644 --- a/cargo-elevator.lua +++ b/cargo-elevator.lua @@ -161,5 +161,6 @@ function run (floors, queue, first_run) end if arg ~= nil and arg[1] == "run" then + FLOORS[1].call() run(FLOORS, PKG_QUEUE, true) end