From ffe7a097b432cfcbb9209efc49814d28fd45f1e4 Mon Sep 17 00:00:00 2001 From: marsteralex Date: Wed, 17 Aug 2022 21:12:26 -0400 Subject: [PATCH] include battlebond --- web/public/mtg/app.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/public/mtg/app.js b/web/public/mtg/app.js index e6e46ae5..a2f7679b 100644 --- a/web/public/mtg/app.js +++ b/web/public/mtg/app.js @@ -136,7 +136,11 @@ function determineIfSkip(card) { } if (firstPrint) { if (whichGuesser == 'basic') { - if (card.set_type !== 'expansion' && card.set_type !== 'funny') { + if ( + card.set_type !== 'expansion' && + card.set_type !== 'funny' && + card.set_type !== 'draft_innovation' + ) { return true } } else {