Reduce initial autovote delay to 50+ minutes

This commit is contained in:
LoneWolfHT 2021-02-09 09:42:23 -08:00 committed by GitHub
parent f786784ba8
commit 17278e22a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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 60 * 60
matchskip_time = tonumber(minetest.settings:get("ctf_match.auto_skip_delay")) or 50 * 60
end)