fix: remove stuck carriage bug

Removes bug where carriage would get stuck between floors by calling it
to the first floor on program start.
This commit is contained in:
Emerson Rosen-Jones 2026-01-01 15:00:08 -05:00
parent 6672c75d1a
commit ee6685eda2

View file

@ -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