mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08: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()
|
.stream()
|
||||||
.mapToInt(MageObject::getConvertedManaCost)
|
.mapToInt(MageObject::getConvertedManaCost)
|
||||||
.sum();
|
.sum();
|
||||||
controller.millCards(totalCMC, source, game);
|
controller.drawCards(totalCMC, source.getSourceId(), game);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,7 @@ class NeganTheColdBloodedEffect extends OneShotEffect {
|
||||||
if (controllerChoice.equals(creatureId)) {
|
if (controllerChoice.equals(creatureId)) {
|
||||||
game.informPlayers(controller.getName() + " chose " + permanent.getIdName());
|
game.informPlayers(controller.getName() + " chose " + permanent.getIdName());
|
||||||
}
|
}
|
||||||
if (opponent.equals(creatureId)) {
|
if (opponentChoice.equals(creatureId)) {
|
||||||
game.informPlayers(opponent.getName() + " chose " + permanent.getIdName());
|
game.informPlayers(opponent.getName() + " chose " + permanent.getIdName());
|
||||||
}
|
}
|
||||||
permanent.sacrifice(source, game);
|
permanent.sacrifice(source, game);
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
package org.mage.test.cards.single.m21;
|
||||||
|
|
||||||
|
public class FurorOfTheBittenTest {
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue