From c2feca8abfea6e5ff4fd90b6a2cefce4cdc8205d Mon Sep 17 00:00:00 2001 From: Kevin Lau Date: Sat, 1 Aug 2015 13:04:32 -0700 Subject: [PATCH] Fix Seasonals bug with choice locked items --- config/formats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/formats.js b/config/formats.js index 28499616e3..bec2396a03 100644 --- a/config/formats.js +++ b/config/formats.js @@ -690,7 +690,7 @@ exports.Formats = [ var moves = pokemon.moveset; for (var i = 0; i < moves.length; i++) { if (moves[i].id !== 'swift') { - this.disableMove(pokemon.disableMove(moves[i].id, false)); + pokemon.disableMove(moves[i].id, false); } } }