Prevent losing card reordering in hand

This commit is contained in:
drdev
2015-03-22 18:50:44 +00:00
parent 6841c50d85
commit dd09d623c8
6 changed files with 23 additions and 0 deletions

View File

@@ -71,6 +71,7 @@ public class CHand implements ICDoc {
synchronized (ordering) {
ordering.remove(dragPanel.getCard());
ordering.add(index, dragPanel.getCard());
matchUI.getGameController(p0).reorderHand(dragPanel.getCard(), index);
}
}
});