Replaces another magic number I forgot to replace last commit.

This commit is contained in:
Christopher Leggett 2022-05-29 16:45:27 -04:00
commit 6dc5b05eaf
No known key found for this signature in database
GPG key ID: 7093AE5FF7037D79

View file

@ -626,7 +626,7 @@ void EnTk_Dig(EnTk* this, GlobalContext* globalCtx) {
EnItem00* reward = Item_DropCollectible(globalCtx, &rewardPos, rewardParams[this->currentReward]); EnItem00* reward = Item_DropCollectible(globalCtx, &rewardPos, rewardParams[this->currentReward]);
if (this->currentReward == 4) { if (this->currentReward == 4) {
reward->collectibleFlag = 0x19; reward->collectibleFlag = COLLECTFLAG_GRAVEDIGGING_HEART_PIECE;
} }
} }
} }