feat: added lui to always show change teams button on teams gamemode

This commit is contained in:
Jari van der Kaap 2023-02-26 00:21:35 +01:00
parent a6906c51f6
commit f90c15bd5e

View File

@ -0,0 +1,9 @@
-- Removed check for public matches to allow team change in ranked matches
CoD.IsTeamChangeAllowed = function()
if Engine.GetGametypeSetting( "allowInGameTeamChange" ) == 1 then
return true
else
return false
end
end