Merge pull request #56 from fortressforever/ffa-respawn-turret

Add FFA support to base_respawnturret
This commit is contained in:
Ryan Liptak 2016-06-19 10:42:18 -07:00 committed by GitHub
commit 67e2372743

View file

@ -19,8 +19,10 @@ base_respawnturret = baseclass:new({ team = Team.kUnassigned })
-- if team1 is the same as team2 -- if team1 is the same as team2
function base_respawnturret:validtarget( target_entity ) function base_respawnturret:validtarget( target_entity )
--local entity = GetEntity(ent_id) if self.team == target_entity:GetTeamId() and GetTeam(self.team):IsFFA() then
return (AreTeamsAllied(self.team, target_entity:GetTeamId()) == false) return false
end
return not AreTeamsAllied(self.team, target_entity:GetTeamId())
end end
-- Turrets, by default, have a 2 second delay after they -- Turrets, by default, have a 2 second delay after they