update riot test

This commit is contained in:
Ingmar Goudt 2019-01-14 00:18:21 +01:00
parent 3b5b535de1
commit 4e4d46437c
2 changed files with 5 additions and 5 deletions

View file

@ -31,7 +31,7 @@ public class RiotTest extends CardTestPlayerBase {
addCard(Zone.HAND, playerA, "Rampaging Rendhorn", 1); // Creature {4}{G}
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Rampaging Rendhorn");
setChoice(playerA, "Yes");
setChoice(playerA, "+1/+1 counter");
setStopAt(1, PhaseStep.BEGIN_COMBAT);
@ -51,7 +51,7 @@ public class RiotTest extends CardTestPlayerBase {
addCard(Zone.HAND, playerA, "Rampaging Rendhorn", 1); // Creature {4}{G}
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Rampaging Rendhorn");
setChoice(playerA, "No");
setChoice(playerA, "Haste");
setStopAt(2, PhaseStep.BEGIN_COMBAT);
@ -74,7 +74,7 @@ public class RiotTest extends CardTestPlayerBase {
addCard(Zone.HAND, playerA, "Silvercoat Lion", 1); // Creature {1}{W} 2/2
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Silvercoat Lion");
setChoice(playerA, "Yes");
setChoice(playerA, "+1/+1 counter");
setStopAt(1, PhaseStep.BEGIN_COMBAT);
@ -98,7 +98,7 @@ public class RiotTest extends CardTestPlayerBase {
addCard(Zone.HAND, playerA, "Silvercoat Lion", 1); // Creature {1}{W} 2/2
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Silvercoat Lion");
setChoice(playerA, "No");
setChoice(playerA, "Haste");
setStopAt(2, PhaseStep.BEGIN_COMBAT);

View file

@ -71,7 +71,7 @@ class RiotReplacementEffect extends ReplacementEffectImpl {
Permanent creature = ((EntersTheBattlefieldEvent) event).getTarget();
Player controller = game.getPlayer(source.getControllerId());
if (creature != null && controller != null) {
if (controller.chooseUse(outcome, "Have " + creature.getLogName() + " enter the battlefield with a +1/+1 counter on it or with haste?","", "+1/+1 counter", "Haste", source, game)) {
if (controller.chooseUse(outcome, "Have " + creature.getLogName() + " enter the battlefield with a +1/+1 counter on it or with haste?",null, "+1/+1 counter", "Haste", source, game)) {
if (!game.isSimulation()) {
game.informPlayers(controller.getLogName() + " choose to put a +1/+1 counter on " + creature.getName());
}