mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-01-19 16:14:44 +00:00
Took out
This commit is contained in:
parent
61d48961e9
commit
6f8875cf3e
|
|
@ -17,8 +17,7 @@ $AntiPackIncludeShield = 0;
|
|||
// Called in GetCounts.cs
|
||||
function CheckAntiPack(%game)
|
||||
{
|
||||
//CTF only
|
||||
if($Host::AntiPackEnable && $CurrentMissionType $= "DM" || $CurrentMissionType $= "CTF")
|
||||
if($Host::AntiPackEnable)
|
||||
{
|
||||
//echo("TotalTeamPlayerCount " @ $TotalTeamPlayerCount);
|
||||
//echo("AntiPackPlayerCount " @ $Host::AntiPackPlayerCount);
|
||||
|
|
@ -35,7 +34,6 @@ function CheckAntiPack(%game)
|
|||
$AntiPackStatus = "OFF";
|
||||
}
|
||||
}
|
||||
//All other cases outside of CTF
|
||||
else
|
||||
{
|
||||
if($AntiPackStatus !$= "ACTIVEOFF")
|
||||
|
|
@ -146,8 +144,6 @@ function DefaultGame::gameOver(%game)
|
|||
{
|
||||
Parent::gameOver(%game);
|
||||
|
||||
if($Host::AntiPackEnable)
|
||||
{
|
||||
if($InvBanList[CTF, "CloakingPack"])
|
||||
$InvBanList[CTF, "CloakingPack"] = 0;
|
||||
if(isActivePackage(AntiPackCloak))
|
||||
|
|
@ -159,7 +155,6 @@ function DefaultGame::gameOver(%game)
|
|||
deactivatePackage(AntiPackShield);
|
||||
|
||||
$AntiPackStatus = "OFF";
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue