mirror of
https://github.com/pret/pokeemerald.git
synced 2026-05-09 04:13:03 -05:00
Fix Rage Fist evolution method (#6937)
This commit is contained in:
parent
ddc662fd32
commit
87fbf22476
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user