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,