Skip to content

Commit

Permalink
Update data/mods/sharedpower/abilities.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisXV authored Jan 3, 2024
1 parent 16df475 commit 8d888bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/mods/sharedpower/abilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const Abilities: {[k: string]: ModdedAbilityData} = {
const isAbility = pokemon.ability === 'trace';

const possibleTargets = pokemon.adjacentFoes().filter(
target => (!target.getAbility().flags['notrace'] && !(target.ability === 'noability'))
target => !target.getAbility().flags['notrace'] && target.ability !== 'noability'
);
if (!possibleTargets.length) return;

Expand Down

0 comments on commit 8d888bb

Please sign in to comment.