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 ...@@ -72,12 +72,12 @@ namespace WindBot.Game
reader.Close(); reader.Close();
if (deck.Cards.Count > 60) // if (deck.Cards.Count > 60)
return null; // return null;
if (deck.ExtraCards.Count > 15) // if (deck.ExtraCards.Count > 15)
return null; // return null;
if (deck.SideCards.Count > 15) // if (deck.SideCards.Count > 15)
return null; // return null;
return deck; 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