mirror of
https://github.com/fortressforever/fortressforever-scripts.git
synced 2024-11-25 05:50:58 +00:00
Add FFA support to base_respawnturret
- Don't shoot teammates when the team is set to FFA
This commit is contained in:
parent
4cec0584e1
commit
d96aa4fa26
1 changed files with 4 additions and 2 deletions
|
@ -19,8 +19,10 @@ base_respawnturret = baseclass:new({ team = Team.kUnassigned })
|
|||
-- if team1 is the same as team2
|
||||
|
||||
function base_respawnturret:validtarget( target_entity )
|
||||
--local entity = GetEntity(ent_id)
|
||||
return (AreTeamsAllied(self.team, target_entity:GetTeamId()) == false)
|
||||
if self.team == target_entity:GetTeamId() and GetTeam(self.team):IsFFA() then
|
||||
return false
|
||||
end
|
||||
return not AreTeamsAllied(self.team, target_entity:GetTeamId())
|
||||
end
|
||||
|
||||
-- Turrets, by default, have a 2 second delay after they
|
||||
|
|
Loading…
Reference in a new issue