removed explicit indexing, since changing to an array of objects fixed the ordering problem already

This commit is contained in:
2020-09-04 22:14:27 -06:00
parent 2572c95028
commit c0d32b6dc3
4 changed files with 0 additions and 27 deletions

View File

@@ -27,9 +27,6 @@ function updateEvent() {
function generateDeck(DDF) {
var cards = [""];
DDF.sort(function (a,b) {
return a.dataIndex - b.dataIndex;
});
DDF.forEach( function (dataBlock) {
var tempcards = [];
cards.forEach( function (current) {