Skip to content

Commit

Permalink
strict Howard conditions only if goals rando is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Apr 1, 2024
1 parent 5c7cdde commit e391669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DXRMapFixups/DeusEx/Classes/DXRFixupVandenberg.uc
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ function TimerMapFixes()
case "14_Oceanlab_silo":
prevMapsDone = dxr.flagbase.GetBool('Heliosborn') && //Finished Vandenberg, mission 12
dxr.flagbase.GetBool('schematic_downloaded'); //Finished Ocean Lab, mission 14,
prevMapsDone = prevMapsDone || !#defined(injections);
prevMapsDone = prevMapsDone || !#defined(injections) || dxr.flags.settings.goals<=0;

if(prevMapsDone
&& dxr.flagbase.GetBool('missile_launched') //Redirected the missile in Silo, mission 14
Expand Down

0 comments on commit e391669

Please sign in to comment.