mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
small Negan fix
This commit is contained in:
parent
aebf8b461f
commit
f0dea44773
3 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
package org.mage.test.cards.single.m21;
|
||||
|
||||
public class FurorOfTheBittenTest {
|
||||
}
|
Loading…
Reference in a new issue