Skip to content

Commit

Permalink
prefer const
Browse files Browse the repository at this point in the history
  • Loading branch information
MathyFurret committed Dec 17, 2024
1 parent 1b3a3c8 commit f8fa413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/mods/gen4/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = {
copycat: {
inherit: true,
onHit(pokemon) {
let move: Move | ActiveMove | null = this.lastMove;
const move: Move | ActiveMove | null = this.lastMove;
if (!move) return;

if (
Expand Down

0 comments on commit f8fa413

Please sign in to comment.