s1-rawfiles/scripts/mp/_team_balance.gsc
diamante0018 769a580b70
All checks were successful
lint / Lint GSC files (push) Successful in 9s
fix(s1: GSC): make SP work with the new client update
2024-09-17 19:54:04 +02:00

24 lines
428 B
Plaintext

init()
{
// define onteamselection callback function used in balanceteams()
level.onteamselection = ::set_team;
}
set_team(team)
{
if (team != self.pers["team"])
{
self.switching_teams = true;
self.joining_team = team;
self.leaving_team = self.pers["team"];
}
if (self.sessionstate == "playing")
{
self suicide();
}
maps\mp\gametypes\_menus::addtoteam(team);
maps\mp\gametypes\_menus::endrespawnnotify();
}