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
1 changed files with 4 additions and 4 deletions

View File

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