We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fd323f commit 81f2e78Copy full SHA for 81f2e78
src/js/moveset_import.js
@@ -285,7 +285,7 @@ function addSets(pokes, name) {
285
for (var j = 0; j < currentRow.length; j++) {
286
currentRow[j] = checkExeptions(currentRow[j].trim());
287
if (calc.SPECIES[9][currentRow[j].trim()] !== undefined) {
288
- currentPoke = calc.SPECIES[9][currentRow[j].trim()];
+ currentPoke = JSON.parse(JSON.stringify(calc.SPECIES[9][currentRow[j].trim()]));
289
currentPoke.name = currentRow[j].trim();
290
currentPoke.item = getItem(currentRow, j + 1);
291
if (j === 1 && currentRow[0].trim()) {
0 commit comments