From a5b69a4daf68b5fb96aa7466198f276cc182461f Mon Sep 17 00:00:00 2001 From: Estellar <137097857+estellarc@users.noreply.github.com> Date: Sat, 18 Oct 2025 13:57:33 -0300 Subject: [PATCH] Give the Coin Case when coins are maxed (#7973) --- src/debug.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/debug.c b/src/debug.c index 5779401735..a093bedcf9 100644 --- a/src/debug.c +++ b/src/debug.c @@ -3041,6 +3041,9 @@ static void DebugAction_Give_MaxMoney(u8 taskId) static void DebugAction_Give_MaxCoins(u8 taskId) { SetCoins(MAX_COINS); + + if (!CheckBagHasItem(ITEM_COIN_CASE, 1)) + AddBagItem(ITEM_COIN_CASE, 1); } static void DebugAction_Give_MaxBattlePoints(u8 taskId)