🎨 Change to TF2_ChangeClientTeam

This commit is contained in:
Wliu 2015-02-22 20:20:45 -05:00
parent f772c88eed
commit 20b5f76572

View File

@ -331,14 +331,14 @@ stock TFTeam:TF2_GetClientTeam(client)
} }
/** /**
* Sets a client's current team. * Changes a client's current team.
* *
* @param client Client index. * @param client Client index.
* @param team TFTeam team symbol. * @param team TFTeam team symbol.
* @noreturn * @noreturn
* @error Invalid client index. * @error Invalid client index.
*/ */
stock TF2_SetClientTeam(client, TFTeam:team) stock TF2_ChangeClientTeam(client, TFTeam:team)
{ {
ChangeClientTeam(client, _:team); ChangeClientTeam(client, _:team);
} }