Devtest: Fix missing log level in minetest.log (#11068)

This commit is contained in:
Wuzzy 2021-03-15 09:13:15 +00:00 committed by GitHub
parent 88b052cbea
commit 88f514ad7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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)