Skip to content

Commit

Permalink
CountersProliferateEffect: add default cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanmac committed Jul 29, 2023
1 parent 37d5e9e commit b380e6a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,11 @@ public void resolve(SpellAbility sa) {
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();
Expand Down

0 comments on commit b380e6a

Please sign in to comment.