Fix ZTele_GetClientDelay not returning the value.

Thanks to BotoX.
This commit is contained in:
Richard Helgeby 2015-10-31 21:42:27 +01:00
parent 1ef060258f
commit e3ce8ad558

View File

@ -480,7 +480,7 @@ bool ZTele_HasReachedLimit(int client)
int ZTele_GetClientDelay(int client) int ZTele_GetClientDelay(int client)
{ {
InfectIsClientInfected(client) ? ZTele_GetZombieDelay() : ZTele_GetHumanDelay(); return InfectIsClientInfected(client) ? ZTele_GetZombieDelay() : ZTele_GetHumanDelay();
} }
bool ZTele_PlayerWalkedTooFar(int client) bool ZTele_PlayerWalkedTooFar(int client)