mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 20:59:14 -08:00
Fixed Black Cat with target opponent required
This commit is contained in:
parent
6ad352709a
commit
9e27ee522a
1 changed files with 3 additions and 2 deletions
|
|
@ -29,7 +29,6 @@
|
|||
*/
|
||||
package mage.sets.darkascension;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.MageInt;
|
||||
|
|
@ -39,6 +38,8 @@ import mage.abilities.effects.common.DiscardTargetEffect;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.target.common.TargetOpponent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX
|
||||
|
|
@ -57,7 +58,7 @@ public class BlackCat extends CardImpl<BlackCat> {
|
|||
|
||||
// When Black Cat dies, target opponent discards a card at random.
|
||||
Ability ability = new DiesTriggeredAbility(new DiscardTargetEffect(1, true),false);
|
||||
ability.addTarget(new TargetOpponent());
|
||||
ability.addTarget(new TargetOpponent(true));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue