From 17278e22a44293bb18563059d21ce9d302b74127 Mon Sep 17 00:00:00 2001 From: LoneWolfHT Date: Tue, 9 Feb 2021 09:42:23 -0800 Subject: [PATCH] Reduce initial autovote delay to 50+ minutes --- mods/ctf/ctf_match/vote.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ctf/ctf_match/vote.lua b/mods/ctf/ctf_match/vote.lua index 743ba8d..c2738f4 100644 --- a/mods/ctf/ctf_match/vote.lua +++ b/mods/ctf/ctf_match/vote.lua @@ -82,5 +82,5 @@ ctf_match.register_on_build_time_end(function() can_skip = true matchskip_timer = 0 -- Set to initial vote time - matchskip_time = tonumber(minetest.settings:get("ctf_match.auto_skip_delay")) or 60 * 60 + matchskip_time = tonumber(minetest.settings:get("ctf_match.auto_skip_delay")) or 50 * 60 end)