Removed the glow from the infantry portal.

git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@158 67975925-1194-0748-b3d5-c16f83f1a3a1
This commit is contained in:
tankefugl 2005-06-01 20:54:28 +00:00
parent dcf57ac40e
commit 12f4be06be

View file

@ -1747,7 +1747,7 @@ void AvHInfantryPortal::SetHasBeenBuilt()
SetThink(&AvHInfantryPortal::PortalThink); SetThink(&AvHInfantryPortal::PortalThink);
this->pev->nextthink = gpGlobals->time + kInfantryPortalThinkTime; this->pev->nextthink = gpGlobals->time + kInfantryPortalThinkTime;
this->pev->effects |= kInfantryPortalLightEffect; // this->pev->effects |= kInfantryPortalLightEffect;
} }
void AvHInfantryPortal::Precache() void AvHInfantryPortal::Precache()
@ -1820,7 +1820,7 @@ void AvHInfantryPortal::ResetReinforcingPlayer(bool inSuccess)
void AvHInfantryPortal::UpdateOnRecycle(void) void AvHInfantryPortal::UpdateOnRecycle(void)
{ {
this->ResetReinforcingPlayer(false); this->ResetReinforcingPlayer(false);
this->pev->effects &= ~kInfantryPortalLightEffect; // this->pev->effects &= ~kInfantryPortalLightEffect;
} }
void AvHInfantryPortal::UpdateOnRemove(void) void AvHInfantryPortal::UpdateOnRemove(void)