From 3b409de2fac9ecc9957376cb71f10cd113150e0d Mon Sep 17 00:00:00 2001 From: Li0n Date: Fri, 25 Feb 2022 23:46:39 +0100 Subject: [PATCH] move some local values --- init.lua | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/init.lua b/init.lua index 51127ba..ef2513b 100644 --- a/init.lua +++ b/init.lua @@ -12,9 +12,9 @@ local rumble_duration_max_standard = 5 -- move python program to a different directory -- chat mode: trigger from specific words written by either yourself (humiliation) or others (degradation) -local rumble_strength_max -local rumble_duration_max -local log +local rumble_strength_max = rumble_strength_max_standard +local rumble_duration_max = rumble_duration_max_standard +local log = log_and_chat local log_only = function(text) minetest.log("action", text) @@ -31,9 +31,6 @@ end -- step 1 (start) minetest.register_on_mods_loaded(function() minetest.display_chat_message("rumble mod loaded. May the rumble be with you!") - rumble_strength_max = rumble_strength_max_standard - rumble_duration_max = rumble_duration_max_standard - log = log_and_chat end) -- step 2 (take damage) @@ -83,6 +80,7 @@ minetest.register_chatcommand("settings", { func = function() minetest.display_chat_message("max rumble strength: "..rumble_strength_max) minetest.display_chat_message("max rumble duration: "..rumble_duration_max) + minetest.display_chat_message("current chat and log mode: "..tostring(log)) end, })