From 0aa4c6a9e62da7ecc6f46f8f99370c4ccb50e47f Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Sun, 6 Mar 2022 15:32:13 +0100 Subject: [PATCH] fix some stuff --- computercraft/rc_turtle/remote/startup.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/computercraft/rc_turtle/remote/startup.lua b/computercraft/rc_turtle/remote/startup.lua index 1b26f69..09e3c33 100644 --- a/computercraft/rc_turtle/remote/startup.lua +++ b/computercraft/rc_turtle/remote/startup.lua @@ -33,15 +33,12 @@ local actions = { [keys.g] = function() send_remote(turtle.digDown()) end, - [keys.z] = function() + [keys.y] = function() send_remote(turtle.placeUp()) end, [keys.h] = function() send_remote(turtle.placeDown()) end, - [keys.h] = function() - send_remote(turtle.placeDown()) - end, [keys.q] = function() send_remote(turtle.drop()) end,