Merge branch 'magefree:master' into tiera3-patch-1

This commit is contained in:
tiera3 2024-09-30 02:26:00 +10:00 committed by GitHub
commit dc84a1e29a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,6 +77,7 @@ class ZimoneMysteryUnravelerEffect extends OneShotEffect {
filter.add(FaceDownPredicate.instance); filter.add(FaceDownPredicate.instance);
if (controller != null) { if (controller != null) {
TargetControlledPermanent target = new TargetControlledPermanent(0, 1, filter, true); TargetControlledPermanent target = new TargetControlledPermanent(0, 1, filter, true);
controller.choose(Outcome.BoostCreature, target, source, game);
Permanent permanent = game.getPermanent(target.getFirstTarget()); Permanent permanent = game.getPermanent(target.getFirstTarget());
return permanent != null && permanent.turnFaceUp(source, game, source.getControllerId()); return permanent != null && permanent.turnFaceUp(source, game, source.getControllerId());
} }