Fix wrong cards added to deck

develop
Nathan Steel 1 year ago
parent afee6247fc
commit 0ccb65b1a3

@ -1087,8 +1087,9 @@ function createDeckList(playerId){
item.push(itemCount); item.push(itemCount);
// Set card data for new item // Set card data for new item
// Use the ID from the deckList of player, and return the card of that ID from cardList/DB // Use the ID from the deckList of player, and return the card of that ID from cardList/DB
// ID 1 was adding id 0 as array index. Changed to +1 for now (will correct in DB form) // For now, needs to be -1, as ID1 in decklist refers to ID 1 of carlist which is INDEX 0
cardData[itemCount] = cardArray[deckList[deckItem]+1]; // TODO: Make it use the cardList ID, not the index
cardData[itemCount] = cardArray[deckList[deckItem]-1];
// Set to base position of 'deck' // Set to base position of 'deck'
boardElement[itemCount] = 'deck'; boardElement[itemCount] = 'deck';
// Set Attack, ManaCost, ManaColours TODO: When these are implemented seperately // Set Attack, ManaCost, ManaColours TODO: When these are implemented seperately

Loading…
Cancel
Save