Commit f0072db2 authored by mercury233's avatar mercury233

fix

parent 09012f0d
......@@ -137,6 +137,10 @@ namespace WindBot.Game.AI.Decks
public override IList<ClientCard> OnSelectCard(IList<ClientCard> cards, int min, int max, bool cancelable)
{
if (max <= min)
{
return null;
}
IList<ClientCard> selected = new List<ClientCard>();
// select the last cards
......
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