From 15ef934e3cd54d001566dfe2220d6ccd2a5a0825 Mon Sep 17 00:00:00 2001 From: whosit Date: Sat, 5 Apr 2025 11:32:06 +0300 Subject: [PATCH] fix log showing nils --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 47a18c4..f030ab4 100644 --- a/init.lua +++ b/init.lua @@ -415,7 +415,7 @@ core.register_chatcommand("eval_resume", description = "Resume previous command", privs = { server = true }, func = function(player_name, param) - core.log("action", string.format("[cmd_eval][%s] %s resumed previous command", coro_cc, player_name, dump(param))) + core.log("action", string.format("[cmd_eval] %s resumed previous command", player_name, dump(param))) core.chat_send_player(player_name, "* resuming...") -- it's possible to send the string back to the coroutine through this