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:
TGower 2015-05-20 21:22:44 -07:00
parent 35ecb1b26e
commit 95699b7e1c

View file

@ -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)) {