Fix Bitterbloom Bearer (#8932)

This commit is contained in:
tool4ever
2025-10-15 11:30:41 +02:00
committed by GitHub
parent 04186de397
commit f9150bea34
4 changed files with 11 additions and 5 deletions

View File

@@ -80,7 +80,7 @@ public class MutateEffect extends SpellAbilityEffect {
game.getTriggerHandler().clearActiveTriggers(target, null);
game.getTriggerHandler().registerActiveTrigger(target, false);
game.getAction().moveTo(p.getZone(ZoneType.Merged), host, sa, AbilityKey.newMap());
game.getAction().moveTo(p.getZone(ZoneType.Merged), host, sa);
host.setTapped(target.isTapped());
host.setFlipped(target.isFlipped());

View File

@@ -111,8 +111,7 @@ public class Zone implements java.io.Serializable, Iterable<Card> {
final Zone oldZone = game.getZoneOf(c);
final ZoneType zt = oldZone == null ? ZoneType.Stack : oldZone.getZoneType();
// only if the zoneType differs from this
// don't go in there is its a control change
// don't go in there if its a control change
if (zt != zoneType) {
c.setTurnInController(getPlayer());
c.setTurnInZone(game.getPhaseHandler().getTurn());