From 87fbf22476749b11a7f63ee9a051efd12adff312 Mon Sep 17 00:00:00 2001 From: Eduardo Quezada Date: Wed, 21 May 2025 04:41:51 -0400 Subject: [PATCH] Fix Rage Fist evolution method (#6937) --- src/pokemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pokemon.c b/src/pokemon.c index c96f8f3b66..40f947c978 100644 --- a/src/pokemon.c +++ b/src/pokemon.c @@ -4664,7 +4664,6 @@ bool32 DoesMonMeetAdditionalConditions(struct Pokemon *mon, const struct Evoluti { currentCondition = TRUE; } - break; case IF_KNOWS_MOVE_TYPE: for (j = 0; j < MAX_MON_MOVES; j++) @@ -4738,6 +4737,7 @@ bool32 DoesMonMeetAdditionalConditions(struct Pokemon *mon, const struct Evoluti case IF_USED_MOVE_X_TIMES: if (evolutionTracker >= params[i].arg2) currentCondition = TRUE; + break; // Gen 9 case IF_DEFEAT_X_WITH_ITEMS: if (evolutionTracker >= params[i].arg3)