mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-21 05:43:42 -07:00
Fix wallet display for More Info with non-rando saves. (#4467)
This commit is contained in:
parent
dee885622e
commit
8c304d54b2
1 changed files with 1 additions and 1 deletions
|
@ -682,7 +682,7 @@ void SaveManager::InitMeta(int fileNum) {
|
|||
fileMetaInfo[fileNum].gsTokens = gSaveContext.inventory.gsTokens;
|
||||
fileMetaInfo[fileNum].isDoubleDefenseAcquired = gSaveContext.isDoubleDefenseAcquired;
|
||||
fileMetaInfo[fileNum].gregFound = Flags_GetRandomizerInf(RAND_INF_GREG_FOUND);
|
||||
fileMetaInfo[fileNum].hasWallet = Flags_GetRandomizerInf(RAND_INF_HAS_WALLET);
|
||||
fileMetaInfo[fileNum].hasWallet = Flags_GetRandomizerInf(RAND_INF_HAS_WALLET) || !IS_RANDO;
|
||||
fileMetaInfo[fileNum].defense = gSaveContext.inventory.defenseHearts;
|
||||
fileMetaInfo[fileNum].health = gSaveContext.health;
|
||||
auto randoContext = Rando::Context::GetInstance();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue