mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Painwracker Oni - Fixed typo of subtype check.
This commit is contained in:
parent
4edd2f8686
commit
a04059de27
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue