mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
server: fixed wrong cheater detection in some tourney sideboardings (closes #11877)
This commit is contained in:
parent
72cf60085c
commit
e209ce1c97
17 changed files with 146 additions and 55 deletions
|
|
@ -112,7 +112,7 @@ public class Brawl extends Constructed {
|
|||
Set<String> basicsInDeck = new HashSet<>();
|
||||
if (colorIdentity.isColorless()) {
|
||||
for (Card card : deck.getCards()) {
|
||||
if (basicLandNames.contains(card.getName())) {
|
||||
if (ALL_BASIC_LAND_NAMES.contains(card.getName())) {
|
||||
basicsInDeck.add(card.getName());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue