Skip to content

Commit

Permalink
also show bingo goal description for automated test to print all poss…
Browse files Browse the repository at this point in the history
…ible bingo goals for all start locations to UCC.log
  • Loading branch information
Die4Ever committed Mar 21, 2024
1 parent 3a4af10 commit 9674401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DXRModules/DeusEx/Classes/DXREventsBase.uc
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ simulated function _CreateBingoBoard(PlayerDataItem data, int starting_map, int
l( "#" $ starting_map @ class'DXRStartMap'.static.GetStartingMapNameCredits(starting_map) @ bingo_duration @ end_mission $ " possible bingo goals" );
for(x=0; x<num_options; x++) {
i = options[x];
l( " " $ bingo_options[i].event );
l( " " $ bingo_options[i].event $ " - " $ bingo_options[i].desc );
}
test(num_options > 50, "_CreateBingoBoard more than 50 options for " $ starting_map);
l("----------------------------------");
Expand Down

1 comment on commit 9674401

@Die4Ever
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.