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