@jtff/miztemplate-lib 3.8.1 → 3.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lua/lib/Moose_.lua +801 -205
- package/lua/lib/Splash_Damage_main.lua +2747 -630
- package/lua/src/150-awacs.lua +3 -3
- package/package.json +1 -1
package/lua/src/150-awacs.lua
CHANGED
|
@@ -450,7 +450,7 @@ function triggerOnDemandAwacs(type, askedDuration, askedFL, askedSpeed, askedAnc
|
|
|
450
450
|
AwacsGroup:HandleEvent(EVENTS.Dead)
|
|
451
451
|
function AwacsGroup:OnEventLand(EventData)
|
|
452
452
|
COORDINATE:RemoveMark(map_marker[self:GetName()])
|
|
453
|
-
if self.
|
|
453
|
+
if self.customconfig.escortgroupname then
|
|
454
454
|
jtff_log.info('RTB: '..self.GroupName..'...',"AWACS")
|
|
455
455
|
if self.escortGroupObject:IsAirborne(false) == true then
|
|
456
456
|
jtff_log.info('escort RTB : '.. self.escortGroupObject.GroupName..' AWACS : '..self.GroupName..'...',"AWACS")
|
|
@@ -462,7 +462,7 @@ function triggerOnDemandAwacs(type, askedDuration, askedFL, askedSpeed, askedAnc
|
|
|
462
462
|
end
|
|
463
463
|
function AwacsGroup:OnEventCrash(EventData)
|
|
464
464
|
COORDINATE:RemoveMark(map_marker[self:GetName()])
|
|
465
|
-
if self.
|
|
465
|
+
if self.customconfig.escortgroupname then
|
|
466
466
|
jtff_log.info('RTB: '..self.GroupName..'...',"AWACS")
|
|
467
467
|
if self.escortGroupObject:IsAirborne(false) == true then
|
|
468
468
|
jtff_log.info('escort RTB : '.. self.escortGroupObject.GroupName..' AWACS : '..self.GroupName..'...',"AWACS")
|
|
@@ -474,7 +474,7 @@ function triggerOnDemandAwacs(type, askedDuration, askedFL, askedSpeed, askedAnc
|
|
|
474
474
|
end
|
|
475
475
|
function AwacsGroup:OnEventDead(EventData)
|
|
476
476
|
COORDINATE:RemoveMark(map_marker[self:GetName()])
|
|
477
|
-
if self.
|
|
477
|
+
if self.customconfig.escortgroupname then
|
|
478
478
|
jtff_log.info('RTB: '..self.GroupName..'...',"AWACS")
|
|
479
479
|
if self.escortGroupObject:IsAirborne(false) == true then
|
|
480
480
|
jtff_log.info('escort RTB : '.. self.escortGroupObject.GroupName..' AWACS : '..self.GroupName..'...',"AWACS")
|