aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorBuckarooBanzay <BuckarooBanzay@users.noreply.github.com>2021-03-14 21:23:41 +0100
committerBuckarooBanzay <BuckarooBanzay@users.noreply.github.com>2021-03-14 21:23:41 +0100
commit8f5d9113040726456dc816f2a353cd6708d64d74 (patch)
tree7e25869a88b3deadd97743c8b9fb924812b9d42b /init.lua
parentfdb69489d823d3cb22f9757732245958f9734f3a (diff)
downloadmesecons_debug-8f5d9113040726456dc816f2a353cd6708d64d74.tar.gz
mesecons_debug-8f5d9113040726456dc816f2a353cd6708d64d74.zip
cleanup some of the tab/space mess
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua18
1 files changed, 9 insertions, 9 deletions
diff --git a/init.lua b/init.lua
index 64ce185..2b44b9a 100644
--- a/init.lua
+++ b/init.lua
@@ -1,10 +1,10 @@
local MP = minetest.get_modpath("mesecons_debug")
mesecons_debug = {
- enabled = true,
- -- blockpos-hash => context
- context_store = {},
- context_store_size = 0,
+ enabled = true,
+ -- blockpos-hash => context
+ context_store = {},
+ context_store_size = 0,
-- max penalty in seconds
max_penalty = 300,
@@ -15,14 +15,14 @@ mesecons_debug = {
-- time between /mesecons_clear_penalty commands, in seconds
penalty_clear_cooldown = 120,
- -- mapblock-hash -> true
- whitelist = {},
+ -- mapblock-hash -> true
+ whitelist = {},
- -- playername => true
- hud = {},
+ -- playername => true
+ hud = {},
-- cpu usage in microseconds that triggers the penalty mechanism
- max_usage_micros = 15000
+ max_usage_micros = 15000
}
dofile(MP.."/functions.lua")