]> git.lizzy.rs Git - minetest.git/commitdiff
Devtest: Fix missing log level in minetest.log (#11068)
authorWuzzy <wuzzy2@mail.ru>
Mon, 15 Mar 2021 09:13:15 +0000 (09:13 +0000)
committerGitHub <noreply@github.com>
Mon, 15 Mar 2021 09:13:15 +0000 (10:13 +0100)
games/devtest/mods/experimental/commands.lua

index 132b08b0b04e5e3646635c5eb357b354f7b540c3..8bfa467e10c99c377020c002c7e0ac54c0188be5 100644 (file)
@@ -215,5 +215,5 @@ minetest.register_chatcommand("test_place_nodes", {
 })
 
 core.register_on_chatcommand(function(name, command, params)
-       minetest.log("caught command '"..command.."', issued by '"..name.."'. Parameters: '"..params.."'")
+       minetest.log("action", "caught command '"..command.."', issued by '"..name.."'. Parameters: '"..params.."'")
 end)