- Fixed the Clash effect not revealing the card to the player when asking whether to put the card on the top or on the bottom of the library (possibly also fixes other similar effects that query the player via willPutCardOnTop).

This commit is contained in:
Agetian
2015-01-20 16:02:41 +00:00
parent a04f82237a
commit 45191930f0

View File

@@ -607,7 +607,12 @@ public class PlayerControllerHuman extends PlayerController {
@Override @Override
public boolean willPutCardOnTop(final Card c) { public boolean willPutCardOnTop(final Card c) {
final CardView view = CardView.get(c); final CardView view = CardView.get(c);
return SGuiDialog.confirm(view, "Put " + view + " on the top or bottom of your library?", new String[]{"Top", "Bottom"});
tempShowCard(c);
boolean result = SGuiDialog.confirm(view, "Put " + view + " on the top or bottom of your library?", new String[]{"Top", "Bottom"});
endTempShowCards();
return result;
} }
@Override @Override