Fix Seasonals bug with choice locked items

This commit is contained in:
Kevin Lau 2015-08-01 13:04:32 -07:00
parent 576ef69c05
commit c2feca8abf

View File

@ -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);
}
}
}