F I X E D

This commit is contained in:
Justus Wolff
2026-02-15 11:34:16 +01:00
parent 8c615e129c
commit 978d2993bc

View File

@@ -181,10 +181,10 @@ local function newdesign()
if keys.getName(event[2]) == "e" and currentfloor > 1 then -- go down
currentfloor = currentfloor - 1
end
if keys.getName(event[2]) == "s" and camy < dimensions["z"] then -- pan up
if keys.getName(event[2]) == "w" and camy < dimensions["z"] then -- pan up
camy = camy + 1
end
if keys.getName(event[2]) == "w" and camy > 0 then -- pan down
if keys.getName(event[2]) == "s" and camy > 0 then -- pan down
camy = camy - 1
end
if keys.getName(event[2]) == "a" and camx < dimensions["x"] then -- pan left