style: change string formatting

This commit is contained in:
2025-05-08 01:39:45 -03:00
parent 6d454821f9
commit 08607c6497
+1 -1
View File
@@ -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 })