From a7edc0532555b5d53aa46fdd9af7912b890a2a30 Mon Sep 17 00:00:00 2001 From: Martin Griffin Date: Tue, 23 Jun 2026 21:27:47 +0100 Subject: [PATCH] ResetLotteryCorner: VAR_POKELOT_PRIZE_ITEM contains an item ID --- src/lottery_corner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lottery_corner.c b/src/lottery_corner.c index 117a5d6331..a95e37d5a9 100644 --- a/src/lottery_corner.c +++ b/src/lottery_corner.c @@ -26,7 +26,7 @@ void ResetLotteryCorner(void) u16 rand = Random(); SetLotteryNumber((Random() << 16) | rand); - VarSet(VAR_POKELOT_PRIZE_ITEM, 0); + VarSet(VAR_POKELOT_PRIZE_ITEM, ITEM_NONE); } void SetRandomLotteryNumber(u16 i)