force change level, enforce race mode

This commit is contained in:
Not 2022-05-20 17:09:16 +02:00
parent 14645dbc90
commit 07dca46c92
1 changed files with 7 additions and 8 deletions

View File

@ -1152,11 +1152,13 @@ local function getGamer()
end
end
local function changeMap()
COM_BufInsertText(server, "map " + nextMap + " -force -gametype race")
nextMap = nil
end
local function think()
if nextMap then
COM_BufInsertText(server, "map " + nextMap)
nextMap = nil
end
if nextMap then changeMap() end
if disable then
if AntiAFK then
@ -1309,10 +1311,7 @@ end
addHook("ThinkFrame", think)
local function interThink()
if nextMap then
COM_BufInsertText(server, "map " + nextMap)
nextMap = nil
end
if nextMap then changeMap() end
if not cv_teamchange then
cv_teamchange = CV_FindVar("allowteamchange")