From ef1d4843729859445229ac310a7d6158781f8440 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Thu, 12 Oct 2017 19:28:36 +0100 Subject: [PATCH] Fix stuck at 0,0,0 by starting new match on server start --- mods/ctf_match/init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mods/ctf_match/init.lua b/mods/ctf_match/init.lua index 8013e45..4ac8c2f 100644 --- a/mods/ctf_match/init.lua +++ b/mods/ctf_match/init.lua @@ -32,3 +32,7 @@ if minetest.global_exists("irc") then irc:say("Next round!") end) end + +minetest.after(5, function() + ctf_match.next() +end)