clear forceteam map load

This commit is contained in:
Robin Appelman 2020-03-29 22:27:37 +02:00
commit 9ef230959e
2 changed files with 6 additions and 0 deletions

View file

@ -107,3 +107,9 @@ public void OnClientConnected(client) {
public void OnClientDisconnect(client) {
force_team[client] = 0;
}
public OnMapStart() {
for (int i = 0; i < MAXPLAYERS; i++) {
force_team[i] = 0;
}
}