From b85f7e29f2d77731496a576ae3f2ad3e219980f1 Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 8 May 2025 20:40:06 -0300 Subject: [PATCH] fix: bad formatting --- lua/CC Tweaked/tutel/tutel-host.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/CC Tweaked/tutel/tutel-host.lua b/lua/CC Tweaked/tutel/tutel-host.lua index 2f05fcd..a10964d 100644 --- a/lua/CC Tweaked/tutel/tutel-host.lua +++ b/lua/CC Tweaked/tutel/tutel-host.lua @@ -348,7 +348,7 @@ function turtlesCommand() for i=1, #turtles, 1 do local turt = turtles[i] - local turtleMessage = ("coords: %x, %x, %x - fuel: %d - channel: %d - id: %d - status: %s"):format(turt.position[1], + local turtleMessage = ("coords: %d, %d, %d - fuel: %d - channel: %d - id: %d - status: %s"):format(turt.position[1], turt.position[2], turt.position[3], turt.fuel, turt.channel, turt.id, turt.status) log.info(turtleMessage)