diff options
| author | DeusVexus <10972000+DeusVexus@users.noreply.github.com> | 2022-11-22 00:30:12 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-22 09:30:12 +0100 |
| commit | b843937b345b0eedbad2610a67bfa2182dfd93a2 (patch) | |
| tree | 8fa2e381836cad228d504e07151b65ac06258f30 | |
| parent | c87f0668489c020f8df124e92b76ddfe777da17a (diff) | |
[Fix] Rando: Like Likes should not eat tunics (#1978)
| -rw-r--r-- | soh/src/overlays/actors/ovl_En_Rr/z_en_rr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/src/overlays/actors/ovl_En_Rr/z_en_rr.c b/soh/src/overlays/actors/ovl_En_Rr/z_en_rr.c index f3a7a3c32..530bf5113 100644 --- a/soh/src/overlays/actors/ovl_En_Rr/z_en_rr.c +++ b/soh/src/overlays/actors/ovl_En_Rr/z_en_rr.c @@ -303,7 +303,7 @@ void EnRr_SetupReleasePlayer(EnRr* this, PlayState* play) { this->retreat = true; } } - if (CUR_EQUIP_VALUE(EQUIP_TUNIC) != 1 /* Kokiri tunic */) { + if (CUR_EQUIP_VALUE(EQUIP_TUNIC) != 1 /* Kokiri tunic */ && !gSaveContext.n64ddFlag /* Randomizer Save File */) { tunic = Inventory_DeleteEquipment(play, EQUIP_TUNIC); if (tunic != 0) { this->eatenTunic = tunic; |
