Skip to content

Commit e6e667d

Browse files
committed
also gib if age is over 10 sec
1 parent 1bbb8ae commit e6e667d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Data/Missions.rte/Activities/DecisionDay.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1243,9 +1243,10 @@ function DecisionDay:SpawnAndUpdateInitialDropShips()
12431243
end
12441244
else
12451245
initialDropShipAndVelocity.dropShip.Vel.X = initialDropShipAndVelocity.velX;
1246-
if initialDropShipAndVelocity.dropShip.TravelImpulse.Magnitude > 10 then
1246+
if initialDropShipAndVelocity.dropShip.TravelImpulse.Magnitude > 10 or initialDropShipAndVelocity.dropShip.Age > 100000 then
12471247
initialDropShipAndVelocity.dropShip:GibThis();
12481248
end
1249+
print(initialDropShipAndVelocity.dropShip.Age)
12491250
end
12501251
end
12511252
end

0 commit comments

Comments
 (0)