Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions js/decklist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ function generateSCGDecklist(parsedInput) {
// Create deck variables
const maindeck = parsedInput['main'],
maindeck_count = Decklist.count(maindeck),
sideboard = Decklist.sort(parsedInput['side'], 'alphabetical'),
sideboard = Decklist.sort(parsedInput['side']),
sideboard_count = Decklist.count(sideboard),
letter_page_h = 792; // width is 612pt but not referenced, so no variable

Expand Down Expand Up @@ -707,7 +707,7 @@ function generateStandardDecklist(parsedInput) {
// Create deck variables
const maindeck = Decklist.section(Decklist.sort(parsedInput['main'])),
maindeck_count = Decklist.count(maindeck),
sideboard = Decklist.sort(parsedInput['side'], 'alphabetical'),
sideboard = Decklist.sort(parsedInput['side']),
sideboard_count = Decklist.count(sideboard);

// Add the logo
Expand Down