Reduce automatic vote skip to ~60 minutes

This commit is contained in:
LoneWolfHT 2020-10-29 15:56:43 -07:00 committed by GitHub
parent 0654e81660
commit 8ad0692a9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)