Version 1.01

Recon Mode
Guardian Angel
This commit is contained in:
Christian Franz
2022-06-23 08:30:42 +02:00
parent 92dc6ca40f
commit c4a7547dbd
8 changed files with 105 additions and 103 deletions

View File

@@ -1,5 +1,5 @@
cloneZones = {}
cloneZones.version = "1.4.7"
cloneZones.version = "1.4.8"
cloneZones.verbose = false
cloneZones.requiredLibs = {
"dcsCommon", -- always
@@ -46,6 +46,7 @@
- cargo manager integration - pass cargo objects when present
1.4.6 - removed some verbosity for spawned aircraft with airfields on their routes
1.4.7 - DML watchflag and DML Flag polish, method-->cloneMethod
1.4.8 - added 'wipe?' synonym
--]]--
@@ -233,6 +234,10 @@
theZone.deSpawnFlag = cfxZones.getStringFromZoneProperty(theZone, "deClone?", "none")
end
if cfxZones.hasProperty(theZone, "wipe?") then
theZone.deSpawnFlag = cfxZones.getStringFromZoneProperty(theZone, "wipe?", "none")
end
if theZone.deSpawnFlag then
theZone.lastDeSpawnValue = cfxZones.getFlagValue(theZone.deSpawnFlag, theZone)
end