Skip to content

Commit 9e83c61

Browse files
committed
Update client-teambuilder.js
1 parent 86a1dec commit 9e83c61

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

play.pokemonshowdown.com/js/client-teambuilder.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -2926,17 +2926,14 @@
29262926
buf += '</div></div>';
29272927
}
29282928

2929-
console.log(set.movePPUps);
29302929
for (var i = 0; i <= 3; i++) {
29312930
buf += '<div class="formrow"><label class="formlabel" title="Move ' + (i + 1) + ' PP Ups">Move ' + (i + 1) + ' PP Ups:</label><div>';
29322931
var defaultPPUps = toID(set.moves[i]) === 'trumpcard' ? 0 : 3;
29332932
var movePPUps = defaultPPUps;
29342933
if (set.movePPUps && !isNaN(set.movePPUps[i])) movePPUps = set.movePPUps[i];
2935-
console.log(movePPUps);
29362934
buf += '<select name="move' + i + 'ppups" class="button">';
29372935
for (var j = 0; j <= 3; j++) {
2938-
if (movePPUps === j) console.log("match");
2939-
buf += '<option value="' + j + '" ' + (movePPUps === j ? 'selected' : '') + '>' + j + '</option>'
2936+
buf += '<option value="' + j + '" ' + (movePPUps === j ? 'selected' : '') + '>' + j + '</option>';
29402937
}
29412938
buf += '</select>';
29422939
buf += '</div></div>';

0 commit comments

Comments
 (0)