mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-03-06 07:27:47 +01:00
fix ai switch semi invulnerable
This commit is contained in:
parent
133aa9e28d
commit
20190ac85a
@ -370,7 +370,7 @@ static bool8 ShouldSwitchIfGameStatePrompt(void)
|
||||
//Pass Wish Heal
|
||||
|
||||
//Semi-Invulnerable
|
||||
if (gStatuses3[opposingBattler] & STATUS3_SEMI_INVULNERABLE)
|
||||
if (gStatuses3[opposingBattler] & STATUS3_SEMI_INVULNERABLE) {
|
||||
if (FindMonThatAbsorbsOpponentsMove()) //If find absorber default to switch
|
||||
switchMon = TRUE;
|
||||
if (!AI_OpponentCanFaintAiWithMod(0)
|
||||
@ -380,6 +380,7 @@ static bool8 ShouldSwitchIfGameStatePrompt(void)
|
||||
&& !WillAIStrikeFirst()
|
||||
&& !AI_OpponentCanFaintAiWithMod(0))
|
||||
switchMon = FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
if (switchMon)
|
||||
|
Loading…
x
Reference in New Issue
Block a user