Skip to content

Commit

Permalink
Fix scaling for bingo goals that are only possible during mission 15
Browse files Browse the repository at this point in the history
  • Loading branch information
theastropath committed Jul 30, 2023
1 parent 4d99f78 commit cb3535c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DXRModules/DeusEx/Classes/DXREvents.uc
Original file line number Diff line number Diff line change
Expand Up @@ -2050,7 +2050,7 @@ static function float MissionsMaskAvailability(int currentMission, int missionsM
t = (1<<i) & missionsMask;
expired += int( t != 0 );
}
for(i=currentMission; i<15; i++) {
for(i=currentMission; i<=15; i++) {
t = (1<<i) & missionsMask;
num += int( t != 0 );
}
Expand Down

0 comments on commit cb3535c

Please sign in to comment.