small Negan fix

This commit is contained in:
Ingmar Goudt 2020-12-23 21:38:42 +01:00
parent aebf8b461f
commit f0dea44773
3 changed files with 6 additions and 2 deletions

View file

@ -57,7 +57,7 @@ public final class HeedTheMists extends CardImpl {
.stream()
.mapToInt(MageObject::getConvertedManaCost)
.sum();
controller.millCards(totalCMC, source, game);
controller.drawCards(totalCMC, source.getSourceId(), game);
return true;
}

View file

@ -110,7 +110,7 @@ class NeganTheColdBloodedEffect extends OneShotEffect {
if (controllerChoice.equals(creatureId)) {
game.informPlayers(controller.getName() + " chose " + permanent.getIdName());
}
if (opponent.equals(creatureId)) {
if (opponentChoice.equals(creatureId)) {
game.informPlayers(opponent.getName() + " chose " + permanent.getIdName());
}
permanent.sacrifice(source, game);

View file

@ -0,0 +1,4 @@
package org.mage.test.cards.single.m21;
public class FurorOfTheBittenTest {
}