Skip to content

Commit

Permalink
Jumbo Imp typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Zzooouhh authored Sep 30, 2018
1 parent 595d7f3 commit ba3b243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mage.Sets/src/mage/cards/j/JumboImp.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public boolean apply(Game game, Ability source) {
Permanent permanent = game.getPermanentEntering(source.getSourceId());
if (controller != null && permanent != null) {
int amount = controller.rollDice(game, 6);
ArrayList<UUID> appliedEffects = (ArrayList<UUID>) this.getValue("appldiedEffects"); // the basic event is the EntersBattlefieldEvent, so use already applied replacement effects from that event
ArrayList<UUID> appliedEffects = (ArrayList<UUID>) this.getValue("appliedEffects"); // the basic event is the EntersBattlefieldEvent, so use already applied replacement effects from that event
permanent.addCounters(CounterType.P1P1.createInstance(amount), source, game, appliedEffects);
return super.apply(game, source);
}
Expand Down

0 comments on commit ba3b243

Please sign in to comment.