From 08607c64974b3bdf9186fc89f878a3aa23193bea Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 8 May 2025 01:39:45 -0300 Subject: [PATCH] style: change string 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 19588f7..bc7ab2c 100644 --- a/lua/CC Tweaked/tutel/tutel-host.lua +++ b/lua/CC Tweaked/tutel/tutel-host.lua @@ -159,7 +159,7 @@ end function handleScan(keys, id) local turt = registerTurtle({ keys.positionX, keys.positionY, keys.positionZ }, keys.fuel, id) - log.info("Received turtle info (pos: %d, %d, %d - fuel: %d - channel: %d - id: %d)", turt.position[1], + log.info("Received turtle info (pos: %d, %d, %d | fuel: %d | channel: %d | id: %d)", turt.position[1], turt.position[2], turt.position[3], turt.fuel, turt.channel, id) sendToAll("REGISTER", { ["id"] = id, ["turtleChannel"] = turt.channel })