From cd47269055b5af75bfb23a569fe866749f3f349e Mon Sep 17 00:00:00 2001 From: Justus Wolff Date: Sun, 15 Feb 2026 11:35:08 +0100 Subject: [PATCH] alright applied patch on everything else --- src/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.lua b/src/main.lua index a27da28..92ed337 100644 --- a/src/main.lua +++ b/src/main.lua @@ -187,10 +187,10 @@ local function newdesign() 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 + if keys.getName(event[2]) == "d" and camx < dimensions["x"] then -- pan left camx = camx + 1 end - if keys.getName(event[2]) == "d" and camx > 0 then -- pan right + if keys.getName(event[2]) == "a" and camx > 0 then -- pan right camx = camx - 1 end end