From 97a80b4816ea60cc295a1d801aa6129c1e1393d8 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 8 Oct 2022 17:34:55 +0200 Subject: DevTest: Move chat command logging to separate mod --- games/devtest/mods/log/init.lua | 3 +++ games/devtest/mods/log/mod.conf | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 games/devtest/mods/log/init.lua create mode 100644 games/devtest/mods/log/mod.conf (limited to 'games/devtest/mods/log') diff --git a/games/devtest/mods/log/init.lua b/games/devtest/mods/log/init.lua new file mode 100644 index 000000000..4102bca36 --- /dev/null +++ b/games/devtest/mods/log/init.lua @@ -0,0 +1,3 @@ +minetest.register_on_chatcommand(function(name, command, params) + minetest.log("action", "[devtest] Caught command '"..command.."', issued by '"..name.."'. Parameters: '"..params.."'") +end) diff --git a/games/devtest/mods/log/mod.conf b/games/devtest/mods/log/mod.conf new file mode 100644 index 000000000..d2f37b979 --- /dev/null +++ b/games/devtest/mods/log/mod.conf @@ -0,0 +1,2 @@ +name = log +description = Log DevTest-related actions -- cgit v1.2.3