From 8ad0692a9ae84c20c13ace214020ecfaa6a139c2 Mon Sep 17 00:00:00 2001 From: LoneWolfHT Date: Thu, 29 Oct 2020 15:56:43 -0700 Subject: [PATCH] Reduce automatic vote skip to ~60 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 9295bab..743ba8d 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 90 * 60 + matchskip_time = tonumber(minetest.settings:get("ctf_match.auto_skip_delay")) or 60 * 60 end)