This commit is contained in:
tool4EvEr
2022-02-19 11:51:19 +01:00
parent f4ac0eff75
commit 549045994b
2 changed files with 5 additions and 5 deletions

View File

@@ -255,14 +255,14 @@ public class DiscardEffect extends SpellAbilityEffect {
Player chooser = p;
if (mode.endsWith("YouChoose")) {
chooser = source.getController();
} else if (mode.endsWith("TgtChoose")) {
} else if (mode.equals("RevealTgtChoose")) {
chooser = firstTarget;
}
if (mode.startsWith("Reveal")) {
game.getAction().reveal(dPHand, p);
}
if (mode.startsWith("Look")) {
if (mode.startsWith("Look") && p != chooser) {
game.getAction().revealTo(dPHand, chooser);
}