Skip to content

Commit db9e4d2

Browse files
authored
Fixed syntax error
1 parent 7407650 commit db9e4d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Data/Base.rte/Activities/OneManArmy.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ function OneManArmy:UpdateActivity()
300300
end
301301

302302
--Spawn the AI
303-
if self.CPUTeam ~= Activity.NOTEAM and self.enemySpawnTimer:LeftTillSimMS(self.enemySpawnTimeLimit) <= 0 and then
303+
if self.CPUTeam ~= Activity.NOTEAM and self.enemySpawnTimer:LeftTillSimMS(self.enemySpawnTimeLimit) <= 0 then
304304
local ship, actorsInCargo;
305305

306306
if math.random() < 0.5 then
@@ -418,4 +418,4 @@ function OneManArmy:UpdateActivity()
418418
self.enemySpawnTimeLimit = (self.baseSpawnTime + math.random(self.baseSpawnTime)) * rte.SpawnIntervalScale;
419419
end
420420
end
421-
end
421+
end

0 commit comments

Comments
 (0)