mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
ChangeZoneEffect: WithCounters should be go throuh etbCounter function
This commit is contained in:
@@ -475,7 +475,7 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
|
|||||||
}
|
}
|
||||||
if (sa.hasParam("WithCounters")) {
|
if (sa.hasParam("WithCounters")) {
|
||||||
String[] parse = sa.getParam("WithCounters").split("_");
|
String[] parse = sa.getParam("WithCounters").split("_");
|
||||||
tgtC.addCounter(CounterType.getType(parse[0]), Integer.parseInt(parse[1]), hostCard, true);
|
tgtC.addEtbCounter(CounterType.getType(parse[0]), Integer.parseInt(parse[1]));
|
||||||
}
|
}
|
||||||
if (sa.hasParam("GainControl")) {
|
if (sa.hasParam("GainControl")) {
|
||||||
if (sa.hasParam("NewController")) {
|
if (sa.hasParam("NewController")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user