Commit 04980cd5 authored by SherryChaos's avatar SherryChaos

fix card swap bug

parent b1d3b148
...@@ -2009,6 +2009,9 @@ namespace MDPro3 ...@@ -2009,6 +2009,9 @@ namespace MDPro3
card = GCS_Get(from); card = GCS_Get(from);
if (card != null) if (card != null)
Sleep((int)(card.Move(to) * 100)); Sleep((int)(card.Move(to) * 100));
card = GCS_Get(to);
if (card != null)
Sleep((int)(card.Move(from) * 100));
break; break;
case GameMessage.Summoning: case GameMessage.Summoning:
cardsInSelection.Clear(); cardsInSelection.Clear();
......
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