mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
Added target.setNotTarget(true); as it is a choose ability that does not target the opponent. Gatherer Ruling
9/15/2013 Akroan Horse’s enters-the-battlefield ability doesn’t target any opponent. In a multiplayer game, you choose the opponent as the ability resolves.
This commit is contained in:
parent
35ecb1b26e
commit
95699b7e1c
1 changed files with 1 additions and 0 deletions
|
@ -105,6 +105,7 @@ class AkroanHorseChangeControlEffect extends OneShotEffect {
|
|||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Target target = new TargetOpponent();
|
||||
target.setNotTarget(true);
|
||||
Player controller = game.getPlayer(source.getControllerId());
|
||||
if (controller != null) {
|
||||
if (controller.chooseTarget(outcome, target, source, game)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue