From 978d2993bcf3423143ef9a1cac287751720cfa8c Mon Sep 17 00:00:00 2001 From: Justus Wolff Date: Sun, 15 Feb 2026 11:34:16 +0100 Subject: [PATCH] F I X E D --- src/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.lua b/src/main.lua index e5aa83a..a27da28 100644 --- a/src/main.lua +++ b/src/main.lua @@ -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