mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- 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:
@@ -607,7 +607,12 @@ public class PlayerControllerHuman extends PlayerController {
|
||||
@Override
|
||||
public boolean willPutCardOnTop(final Card 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
|
||||
|
||||
Reference in New Issue
Block a user