From add75d84c00c7d8453ac9a8cfbf0ebc2a5964b56 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Fri, 25 Nov 2022 18:12:51 -0300 Subject: [PATCH] Applied a couple of tweaks -Made it so only Rare Candies can evolve Lv100 'mons. Game Freak dumb. The Exp. Candies SHOULD work too. -Made sure to remove the candy that was used from the bag. --- src/party_menu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/party_menu.c b/src/party_menu.c index 533a401d9b..28aee957a2 100755 --- a/src/party_menu.c +++ b/src/party_menu.c @@ -5177,9 +5177,10 @@ void ItemUseCB_RareCandy(u8 taskId, TaskFunc task) PlaySE(SE_SELECT); if (cannotUseEffect) { - if (targetSpecies != SPECIES_NONE) + if (targetSpecies != SPECIES_NONE && holdEffectParam == 0) { PartyMenuTryEvolution(taskId); + RemoveBagItem(gSpecialVar_ItemId, 1); } else {