diff --git a/lua/client/vgui/rmv_mapvote_panel.lua b/lua/client/vgui/rmv_mapvote_panel.lua index 8e58504..87ad7cb 100644 --- a/lua/client/vgui/rmv_mapvote_panel.lua +++ b/lua/client/vgui/rmv_mapvote_panel.lua @@ -304,7 +304,7 @@ end local function createVLabel() local versionLabel = vgui.Create("DLabel", RMV_GUI_ELEMENTS.RMV_MAPVOTE_PANEL) - versionLabel:SetText("R" .. "a" .."f" .. "'" .. "s" .. "M" .. "a" .. "p" .. "V" .. "o" .. "t" .. "e" .. " " .. "v" .."1" .."." .. "0" .. "." .. "3") + versionLabel:SetText("R" .. "a" .."f" .. "'" .. "s" .. "M" .. "a" .. "p" .. "V" .. "o" .. "t" .. "e" .. " " .. "v" .."1" .."." .. "0" .. "." .. "5") versionLabel:SetPos(PANEL_WIDTH - 62, THUMBNAIL_COORDS["extend"][4] + 5) versionLabel:SetFont("RMVVersionFont") versionLabel:SetTextColor(Color(255, 255, 255, 200)) diff --git a/lua/server/integration/rmv_ttt.lua b/lua/server/integration/rmv_ttt.lua index b735b1d..9b47a10 100644 --- a/lua/server/integration/rmv_ttt.lua +++ b/lua/server/integration/rmv_ttt.lua @@ -14,19 +14,21 @@ hook.Add("TTTEndRound", "CheckMapvote", function() if rounds_left <= 0 then switchmap = true - Log("Round limit reached. Starting mapvote..") + Log("Round limit reached. Starting mapvote soon..") elseif time_left <= 0 then switchmap = true - Log("Time limit reached. Starting mapvote..") + Log("Time limit reached. Starting mapvote soon..") end if switchmap then timer.Stop("end2prep") - StartRafsMapvote() + timer.Simple(5, function() + StartRafsMapvote() + end) else LANG.Msg("limit_left", {num = rounds_left, time = math.ceil(time_left / 60), - mapname = nextmap}) + mapname = "the next map"}) end end end)