- Clear selected of Partial Paris when Clicking on the "OK" button

This commit is contained in:
Sol
2013-09-08 01:22:46 +00:00
parent c26e23539b
commit b662b0a7ba

View File

@@ -97,6 +97,12 @@ public class InputConfirmMulligan extends InputSyncronizedBase {
private void done() { private void done() {
ButtonUtil.reset(); ButtonUtil.reset();
if (isCommander) {
// Clear the "selected" icon after clicking the done button
for(Card c : this.selected) {
CMatchUI.SINGLETON_INSTANCE.setUsedToPay(c, false);
}
}
stop(); stop();
} }