* Altar of the Brood - Fixed wrong rule tool tip text.

This commit is contained in:
LevelX2 2016-09-23 00:32:48 +02:00
parent ae8e6122a5
commit 3c6402f8a6
2 changed files with 4 additions and 4 deletions

View file

@ -56,7 +56,7 @@ public class AltarOfTheBrood extends CardImpl {
// Whenever another permanent enters the battlefield under your control, each opponent puts the top card of his or her library into his or her graveyard. // Whenever another permanent enters the battlefield under your control, each opponent puts the top card of his or her library into his or her graveyard.
this.addAbility(new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, this.addAbility(new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD,
new PutTopCardOfLibraryIntoGraveEachPlayerEffect(1, TargetController.OPPONENT), filter, false)); new PutTopCardOfLibraryIntoGraveEachPlayerEffect(1, TargetController.OPPONENT), filter, false, null, true));
} }
public AltarOfTheBrood(final AltarOfTheBrood card) { public AltarOfTheBrood(final AltarOfTheBrood card) {

View file

@ -111,13 +111,13 @@ public class PutTopCardOfLibraryIntoGraveEachPlayerEffect extends OneShotEffect
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
switch (targetController) { switch (targetController) {
case OPPONENT: case OPPONENT:
sb.append("Each opponent "); sb.append("each opponent ");
break; break;
case ANY: case ANY:
sb.append("Each player "); sb.append("each player ");
break; break;
case NOT_YOU: case NOT_YOU:
sb.append("Each other player "); sb.append("each other player ");
break; break;
default: default:
throw new UnsupportedOperationException("TargetController type not supported."); throw new UnsupportedOperationException("TargetController type not supported.");