From b7cab92808f5541dc942a865cdc6863cb1470462 Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Sun, 9 Nov 2014 10:22:44 +0100 Subject: [PATCH] Extend by one --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 24ec959..7edd2a1 100644 --- a/init.lua +++ b/init.lua @@ -11,8 +11,8 @@ ipnames.whitelist_file = minetest.get_worldpath().."/ipnames_whitelist.data" -- Limit 2 = maximal 2 accounts, the 3rd under the same IP gets blocked ipnames.name_per_ip_limit = tonumber(minetest.setting_get("max_names_per_ip")) or 2 --- 2 + 2 = 4 accounts as limit for "ignored" players -ipnames.extended_limit = 2 +-- 2 + 3 = 5 accounts as limit for "ignored" players +ipnames.extended_limit = 3 -- Interval where the IP list gets saved/updated ipnames.save_interval = 240