Fix Rage Fist evolution method (#6937)

This commit is contained in:
Eduardo Quezada 2025-05-21 04:41:51 -04:00 committed by GitHub
parent ddc662fd32
commit 87fbf22476
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)