Skip to content

Commit 2dee033

Browse files
committed
itty bitty load fix
1 parent 4ef0344 commit 2dee033

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

Data/Base.rte/Activities/Utility/TacticsHandler.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -685,6 +685,7 @@ function TacticsHandler:UpdateTacticsHandler()
685685
if UInputMan:KeyPressed(Key.L) then
686686
if not self.debugTextDisabled then
687687
self.debugTextDisabled = true;
688+
print("DEBUG TEXT ENABLED")
688689
else
689690
self.debugTextDisabled = false;
690691
end

Data/Browncoats.rte/Activities/RefineryAssaultFunctions.lua

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -599,12 +599,6 @@ function RefineryAssault:HandleMessage(message, object)
599599
self.HUDHandler:RemoveObjective(self.humanTeam, "S8OpenBossDoor");
600600
self.Stage = 9;
601601

602-
self.HUDHandler:QueueScreenText(self.humanTeam,
603-
"Now you can activate the door controls for the CNC-center and take control of it. Victory is within our grasp!",
604-
7000,
605-
0,
606-
true);
607-
608602
MovableMan:SendGlobalMessage("ActivateCapturable_RefineryS10FinalConsole");
609603

610604
for particle in MovableMan.Particles do
@@ -1227,7 +1221,7 @@ function RefineryAssault:MonitorStage1()
12271221
local noActors = true;
12281222

12291223
for i, actor in ipairs(self.saveTable.enemyActorTables.stage1) do
1230-
if not actor or not MovableMan:ValidMO(actor) or actor:IsDead() then
1224+
if not actor or not MovableMan:ValidMO(actor) or ToActor(actor):IsDead() then
12311225
self.saveTable.enemyActorTables.stage1[i] = false;
12321226
self.HUDHandler:RemoveObjective(self.humanTeam, "S1KillEnemies" .. i);
12331227
else
@@ -1755,10 +1749,10 @@ function RefineryAssault:MonitorStage7()
17551749
particle:SendMessage("ActivateRefineryBossDoorConsole");
17561750

17571751
self.HUDHandler:QueueScreenText(self.humanTeam,
1758-
"You're authorized. Now open the command center up.",
1752+
"Now you can activate the door controls for the CNC-center and take control of it. Victory is within our grasp!",
17591753
7000,
17601754
0,
1761-
true);
1755+
true);
17621756

17631757
self.HUDHandler:AddObjective(self.humanTeam,
17641758
"S8OpenBossDoor",

0 commit comments

Comments
 (0)