mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
Gorilla Tactics should only lock into the first successful move (#6217)
This commit is contained in:
parent
7f772fba67
commit
b82aeb623b
|
|
@ -1303,7 +1303,7 @@ let BattleAbilities = {
|
|||
}
|
||||
},
|
||||
onModifyMove(move, pokemon) {
|
||||
if (move.isZPowered || move.maxPowered || move.id === 'struggle') return;
|
||||
if (pokemon.abilityData.choiceLock || move.isZPowered || move.maxPowered || move.id === 'struggle') return;
|
||||
pokemon.abilityData.choiceLock = move.id;
|
||||
},
|
||||
onModifyAtkPriority: 1,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user