Use new syntax in ZTeleMustBeHuman and ZTeleCanHumanTeleport.

This commit is contained in:
Richard Helgeby 2015-03-22 18:42:01 +01:00
parent 5b59f20858
commit f323ca2768

View File

@ -448,15 +448,15 @@ ZTeleStopTimer(client)
tZTele[client] = INVALID_HANDLE; tZTele[client] = INVALID_HANDLE;
} }
ZTeleMustBeHuman(client) bool ZTeleMustBeHuman(client)
{ {
new bool:infected = InfectIsClientInfected(client); bool infected = InfectIsClientInfected(client);
new bool:ztelezombie = GetConVarBool(g_hCvarsList[CVAR_ZTELE_ZOMBIE]); bool ztelezombie = GetConVarBool(g_hCvarsList[CVAR_ZTELE_ZOMBIE]);
return (infected && !ztelezombie); return (infected && !ztelezombie);
} }
ZTeleCanHumanTeleport() bool ZTeleCanHumanTeleport()
{ {
// There are individual restrictions whether a human can teleport before or // There are individual restrictions whether a human can teleport before or
// after zombies have spawned. // after zombies have spawned.