add check for Gorilla Tactics

knock off shouldnt reset choicedMove when the pokemon has the Gorilla Tactics ability
This commit is contained in:
CallmeEchoo 2023-03-22 22:30:24 +01:00
parent 9ec31c61bf
commit 4541cc3319

View File

@ -5330,7 +5330,8 @@ static bool32 TryKnockOffBattleScript(u32 battlerDef)
gLastUsedItem = gBattleMons[battlerDef].item;
gBattleMons[battlerDef].item = 0;
gBattleStruct->choicedMove[battlerDef] = 0;
if (gBattleMons[battlerDef].ability != ABILITY_GORILLA_TACTICS)
gBattleStruct->choicedMove[battlerDef] = 0;
gWishFutureKnock.knockedOffMons[side] |= gBitTable[gBattlerPartyIndexes[battlerDef]];
CheckSetUnburden(battlerDef);