CountersProliferateEffect: add default cases

This commit is contained in:
Hans Mackowiak
2023-07-29 11:26:20 +02:00
parent 37d5e9e697
commit b380e6a12b

View File

@@ -45,10 +45,11 @@ public class CountersProliferateEffect extends SpellAbilityEffect {
switch (game.getReplacementHandler().run(ReplacementType.Proliferate, repParams)) {
case NotReplaced:
break;
case Updated: {
case Updated:
num = (int) repParams.get(AbilityKey.Num);
break;
}
default:
return;
}
PlayerController pc = p.getController();