From 8e4f0c50af2ac2a28fc6d1b238c31a7bd18bc43e Mon Sep 17 00:00:00 2001 From: Zach H Date: Mon, 6 Jul 2015 01:31:24 -0400 Subject: [PATCH] remove breaks --- common/decklist.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/decklist.cpp b/common/decklist.cpp index e35f8e62..1287bd69 100644 --- a/common/decklist.cpp +++ b/common/decklist.cpp @@ -741,8 +741,7 @@ void DeckList::updateDeckHash() } else if (node->getName() != "tokens") // Neither Mainboard, Sideboard, or Tokens... cheater? { - isValidDeckList = false; - break; break; break; // Deck is invalid, end the entire check + isValidDeckList = false; // Deck is invalid } } }