From 166fd3efc334503b514a1ac2e60b0bda69ae87e0 Mon Sep 17 00:00:00 2001 From: neru Date: Tue, 13 May 2025 00:33:54 -0300 Subject: [PATCH] style: format help messages differently --- lua/CC Tweaked/tutel/tutel-host.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/CC Tweaked/tutel/tutel-host.lua b/lua/CC Tweaked/tutel/tutel-host.lua index 791440f..99be5bf 100644 --- a/lua/CC Tweaked/tutel/tutel-host.lua +++ b/lua/CC Tweaked/tutel/tutel-host.lua @@ -367,7 +367,8 @@ registerConsoleCommand("turtles", turtlesCommand, "Lists all the linked turtles" function helpCommand() log.info("----- commands -----") for _, cmd in pairs(consoleCommands) do - log.info("%s - %s", cmd.name, cmd.desc) + log.info("* %s", cmd.name) + log.info("\t%s", cmd.desc) end end registerConsoleCommand("help", helpCommand, "Prints out all the console commands")