- New mission type ORBIT_GROUP
- Updated mission type RECOVERYTANKER
This commit is contained in:
Frank
2022-10-30 14:10:55 +01:00
parent 2840865b83
commit 236e7afcfc
4 changed files with 128 additions and 122 deletions

View File

@@ -740,7 +740,9 @@ function UTILS.RemoveMark(MarkID, Delay)
if Delay and Delay>0 then
TIMER:New(UTILS.RemoveMark, MarkID):Start(Delay)
else
trigger.action.removeMark(MarkID)
if MarkID then
trigger.action.removeMark(MarkID)
end
end
end