mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-11 16:26:22 +00:00
Fix Bitterbloom Bearer (#8932)
This commit is contained in:
@@ -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());
|
||||
|
||||
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user