From a04059de275b4b079fb03303173fafc392cd8b40 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 25 Oct 2014 22:47:19 +0200 Subject: [PATCH] * Painwracker Oni - Fixed typo of subtype check. --- .../src/mage/sets/championsofkamigawa/PainwrackerOni.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/PainwrackerOni.java b/Mage.Sets/src/mage/sets/championsofkamigawa/PainwrackerOni.java index 9e939356cf..452aeb9728 100644 --- a/Mage.Sets/src/mage/sets/championsofkamigawa/PainwrackerOni.java +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/PainwrackerOni.java @@ -29,14 +29,14 @@ package mage.sets.championsofkamigawa; import java.util.UUID; -import mage.constants.CardType; -import mage.constants.Rarity; import mage.MageInt; import mage.abilities.Ability; import mage.abilities.common.BeginningOfUpkeepTriggeredAbility; import mage.abilities.effects.common.SacrificeControllerEffect; import mage.abilities.keyword.FearAbility; import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; import mage.constants.TargetController; import mage.filter.FilterPermanent; import mage.filter.common.FilterControlledCreaturePermanent; @@ -94,7 +94,7 @@ class PainwrackerOniEffect extends SacrificeControllerEffect { @Override public boolean apply(Game game, Ability source) { - if (game.getBattlefield().countAll(new FilterCreaturePermanent("Oger", "Oger"), source.getControllerId(), game) < 1) { + if (game.getBattlefield().countAll(new FilterCreaturePermanent("Ogre", "Ogre"), source.getControllerId(), game) < 1) { return super.apply(game, source); } return true;