add check for Gorilla Tactics when resetting choicedMove from knock off (#2854)

This commit is contained in:
ghoulslash 2023-03-26 15:03:56 -04:00 committed by GitHub
commit dc63d096f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5342,7 +5342,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);