1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-27 15:00:30 +02:00
minetest/games/devtest/mods/log/init.lua

4 lines
190 B
Lua
Raw Normal View History

minetest.register_on_chatcommand(function(name, command, params)
minetest.log("action", "[devtest] Caught command '"..command.."', issued by '"..name.."'. Parameters: '"..params.."'")
end)