Update trigger so it doesn't resolve when card moved

This commit is contained in:
tool4EvEr
2021-05-24 14:04:46 +02:00
parent 6c11701032
commit 97d9c57951
3 changed files with 5 additions and 5 deletions

View File

@@ -348,7 +348,6 @@ public abstract class CardTraitBase extends GameObject implements IHasCardView,
}
list = CardLists.getValidCards(list, sIsPresent.split(","), this.getHostCard().getController(), this.getHostCard(), this);
final String rightString = presentCompare.substring(2);
int right = AbilityUtils.calculateAmount(getHostCard(), rightString, this);
final int left = list.size();

View File

@@ -340,7 +340,7 @@ public abstract class Trigger extends TriggerReplacementBase {
}
}
if ( !meetsCommonRequirements(this.mapParams))
if (!meetsCommonRequirements(this.mapParams))
return false;
return true;