mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-01-30 23:10:14 -05:00
Don't autosave after obtaining bombchus if bombchu drops are enabled (#2077)
This commit is contained in:
parent
39b80137f6
commit
656dcd2021
@ -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…
Reference in New Issue
Block a user