-
Notifications
You must be signed in to change notification settings - Fork 214
Fix DLC info message always being displayed #1393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
a552072 to
9e8d9cb
Compare
9e8d9cb to
1fcb560
Compare
64a5277 to
3ad00fb
Compare
DarioSamo
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code changes seem good to me, still needs validation from someone testing it out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't seem to be able to get achievement data to save when removing the save folder and starting new game, the debug console prints the following output:
[Mod Loader] Loading code: "SkipIntroLogos"
[*] SDL video driver: "windows"
[*] Achievement data will not be saved in this session!
[*] Saving persistent storage binary...
|
Should be fixed now, the condition for it would be missed on first creation due to the default value being if (!ignoreStatus && BinStatus != EAchBinStatus::Success)
{
LOGN_WARNING("Achievement data will not be saved in this session!");
return false;
} |
Fixes a game bug that causes the DLC info message to always be displayed. I've explained here the causes of this issue.
Closes #1167.