From e3a4a1322cd5eb01f6e9ef0ba5997a073cf98b66 Mon Sep 17 00:00:00 2001 From: brulijam Date: Fri, 21 Jun 2024 01:02:25 +0200 Subject: [PATCH] . --- src/brulijam/lib/tutel.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/brulijam/lib/tutel.lua b/src/brulijam/lib/tutel.lua index 1727e41..913b885 100644 --- a/src/brulijam/lib/tutel.lua +++ b/src/brulijam/lib/tutel.lua @@ -27,7 +27,7 @@ local function forward(x, y, z, r) x = x - 1 elseif r == 2 then z = z - 1 - else + elseif r == 3 then x = x + 1 end end @@ -42,7 +42,7 @@ local function back(x, y, z, r) x = x + 1 elseif r == 2 then z = z + 1 - else + elseif r == 3 then x = x - 1 end end