Commit b42fcf49 authored by wind2009's avatar wind2009

修复无法使用超额卡组的bug

parent 93ec83f9
Pipeline #24170 passed with stage
in 1 minute and 47 seconds
......@@ -72,12 +72,12 @@ namespace WindBot.Game
reader.Close();
if (deck.Cards.Count > 60)
return null;
if (deck.ExtraCards.Count > 15)
return null;
if (deck.SideCards.Count > 15)
return null;
// if (deck.Cards.Count > 60)
// return null;
// if (deck.ExtraCards.Count > 15)
// return null;
// if (deck.SideCards.Count > 15)
// return null;
return deck;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment