Skip to content

Commit

Permalink
Fix Metronome
Browse files Browse the repository at this point in the history
  • Loading branch information
Zarel committed May 1, 2020
1 parent 56f6ab5 commit 13bb703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11640,7 +11640,7 @@ export const BattleMovedex: {[moveid: string]: MoveData} = {
const moves: MoveData[] = [];
for (const id in exports.BattleMovedex) {
const move = exports.BattleMovedex[id];
if (id !== move.id) continue;
if (move.realMove) continue;
if (move.isZ || move.isMax || move.isNonstandard) continue;
if (effect.noMetronome!.includes(move.id)) continue;
if (this.dex.getMove(id).gen > this.gen) continue;
Expand Down

0 comments on commit 13bb703

Please sign in to comment.