Merge remote-tracking branch 'refs/remotes/origin/master' into 344-AI-Bomb-Zone

# Conflicts:
#	Moose Mission Setup/Moose.lua
This commit is contained in:
FlightControl
2017-05-09 21:30:18 +02:00
8 changed files with 23 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
--- **AI** -- **Provide Battleground Air Interdiction (bombing).**
--- **AI** -- **Provide Battlefield Air Interdiction (bombing).**
--
-- ![Banner Image](..\Presentations\AI_BAI\Dia1.JPG)
--

View File

@@ -223,7 +223,7 @@ function MISSION:New( CommandCenter, MissionName, MissionPriority, MissionBriefi
-- Private implementations
CommandCenter:SetMenu()
return self
end

View File

@@ -524,7 +524,8 @@ end
-- @return #boolean
function TASK:HasGroup( FindGroup )
return self:GetGroups():IsIncludeObject( FindGroup )
local SetAttackGroup = self:GetGroups()
return SetAttackGroup:FindGroup(FindGroup)
end

View File

@@ -421,7 +421,7 @@ do -- TASK_BAI
self:SetBriefing(
TaskBriefing or
"Execute a Battleground Air Interdiction of a group of enemy targets.\n" ..
"Execute a Battlefield Air Interdiction of a group of enemy targets.\n" ..
"Initial Coordinates: " .. TargetPositionText .. "\n" ..
"Threat Level: [" .. string.rep( "", TargetThreatLevel ) .. "]"
)