[0.69.420 -PUBLIC#1371] Unfinishable Lights Out for Tarkus Bomb

dcter12

New Member
Jan 6, 2022
3
1
28
The Tarkus bomb lights out mission appears to be unwinnable. The code reaches the non interactive state and does not run a.props.onSuccess().

1645075883623.png
Manually triggering the f: function() on line 258482 finishes the game as expected.
There is possibly an issue with the return and trigger of the window.showDialog() function in regards to the Puzzle modal.

All the other variables seem to function as expected when victory is set to true.

It just appears that the l = function() is never called.

This may just be a timing issue as well since pausing tediously every step lead to a success.

Anyways, Godspeed.
 

dcter12

New Member
Jan 6, 2022
3
1
28
A note that this corresponds with line 99 in your LightsOutMinigame.jsx file.

JavaScript:
if (victory)
{
    nextFunc = () => window.showDialog(UIModalType.PUZZLE, "Switchboard Bypassed", "The switchboard system has been successfully bypassed!",
    [
        { txt: "Continue", f: () => { window.removeDialog(); window.removeLightsOutMinigame(); window.returnFromElement(); this.props.onSuccess(); }}
    ]);
}