fix #11783 (default card drawn hint only when applicable)

This commit is contained in:
xenohedron 2024-03-23 02:16:32 -04:00
parent 1e10d070ae
commit 6820aa5ee1

View file

@ -36,7 +36,9 @@ public class DrawNthCardTriggeredAbility extends TriggeredAbilityImpl {
super(zone, effect, optional);
this.targetController = targetController;
this.cardNumber = cardNumber;
this.addHint(hint);
if (targetController == TargetController.YOU) {
this.addHint(hint);
}
setTriggerPhrase(generateTriggerPhrase());
}