mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-07-31 03:50:37 -07:00
Don't autosave after obtaining bombchus if bombchu drops are enabled (#2077)
This commit is contained in:
parent
39b80137f6
commit
656dcd2021
1 changed files with 7 additions and 0 deletions
|
@ -2673,6 +2673,13 @@ void PerformAutosave(PlayState* play, u8 item) {
|
|||
if (play->sceneNum == SCENE_GANON_DEMO) {
|
||||
break;
|
||||
}
|
||||
case ITEM_BOMBCHU:
|
||||
case ITEM_BOMBCHUS_5:
|
||||
case ITEM_BOMBCHUS_20:
|
||||
if (!CVar_GetS32("gBombchuDrops", 0)) {
|
||||
Play_PerformSave(play);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
Play_PerformSave(play);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue