Changed some annotations

This commit is contained in:
ChocoTaco 2018-11-13 15:31:04 -05:00
parent 2b247a4463
commit cef798bd5c

View file

@ -2,10 +2,8 @@
// //
//$Host::AntiCloakEnable = 1; //$Host::AntiCloakEnable = 1;
//$Host::AntiCloakPlayerCount = 6; //$Host::AntiCloakPlayerCount = 6;
//
//TotalTeamCount based on how many on team, not how many on the server.
//Called in GetCounts //Called in GetCounts.cs
function ActivateAntiCloak() function ActivateAntiCloak()
{ {
//CTF only //CTF only
@ -14,13 +12,12 @@ function ActivateAntiCloak()
//echo("TotalTeamPlayerCount " @ $TotalTeamPlayerCount); //echo("TotalTeamPlayerCount " @ $TotalTeamPlayerCount);
//echo("AntiCloakPlayerCount " @ $AntiCloakPlayerCount); //echo("AntiCloakPlayerCount " @ $AntiCloakPlayerCount);
if( !$Host::TournamentMode && $TotalTeamPlayerCount < $Host::AntiCloakPlayerCount ) //If server is in Tourny mode and the team population is lower than the AntiCloakPlayerCount cloak is not selectable.
//If server is in Tourny mode or if the server population isnt higher than the AntiCloakPlayerCount the CloakPack is not selectable. if( !$Host::TournamentMode && $TotalTeamPlayerCount < $Host::AntiCloakPlayerCount )
$InvBanList[CTF, "CloakingPack"] = true; $InvBanList[CTF, "CloakingPack"] = true;
//All other cases it is.
else else
//If AntiCloakPlayerCount is lower than server population, CloakPack is enabled and Selectable. $InvBanList[CTF, "CloakingPack"] = false;
$InvBanList[CTF, "CloakingPack"] = false;
} }
} }