From 6dc5b05eafbbae6625939484e10deab9928ba7c4 Mon Sep 17 00:00:00 2001 From: Christopher Leggett Date: Sun, 29 May 2022 16:45:27 -0400 Subject: [PATCH] Replaces another magic number I forgot to replace last commit. --- soh/src/overlays/actors/ovl_En_Tk/z_en_tk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/src/overlays/actors/ovl_En_Tk/z_en_tk.c b/soh/src/overlays/actors/ovl_En_Tk/z_en_tk.c index 068c2bf96..e3c0b124b 100644 --- a/soh/src/overlays/actors/ovl_En_Tk/z_en_tk.c +++ b/soh/src/overlays/actors/ovl_En_Tk/z_en_tk.c @@ -626,7 +626,7 @@ void EnTk_Dig(EnTk* this, GlobalContext* globalCtx) { EnItem00* reward = Item_DropCollectible(globalCtx, &rewardPos, rewardParams[this->currentReward]); if (this->currentReward == 4) { - reward->collectibleFlag = 0x19; + reward->collectibleFlag = COLLECTFLAG_GRAVEDIGGING_HEART_PIECE; } } }