mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-07 02:40:30 -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) {
|
if (play->sceneNum == SCENE_GANON_DEMO) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case ITEM_BOMBCHU:
|
||||||
|
case ITEM_BOMBCHUS_5:
|
||||||
|
case ITEM_BOMBCHUS_20:
|
||||||
|
if (!CVar_GetS32("gBombchuDrops", 0)) {
|
||||||
|
Play_PerformSave(play);
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
Play_PerformSave(play);
|
Play_PerformSave(play);
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user