Better check for mutated commanders when not on top

This commit is contained in:
tool4EvEr
2022-06-16 12:23:50 +02:00
parent bd64bd202e
commit fb204d4471

View File

@@ -326,7 +326,7 @@ public class GameAction {
CardCollectionView comCards = c.getOwner().getCardsIn(ZoneType.Command);
for (final Card effCard : comCards) {
for (final ReplacementEffect re : effCard.getReplacementEffects()) {
if (re.hasParam("CommanderMoveReplacement") && effCard.getEffectSource().getName().equals(c.getRealCommander().getName())) {
if (re.hasParam("CommanderMoveReplacement") && c.getMergedCards().contains(effCard.getEffectSource())) {
commanderEffect = effCard;
break;
}