mirror of
https://github.com/correl/mage.git
synced 2025-01-03 19:17:30 +00:00
Removed Debug
This commit is contained in:
parent
4fe3f5480c
commit
846a00b472
1 changed files with 1 additions and 1 deletions
|
@ -92,6 +92,7 @@ class KinzuOfTheBleakCovenEffect extends OneShotEffect {
|
||||||
if (player == null || card == null) {
|
if (player == null || card == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
//Can move to exile here - checked earlier if target is still legal
|
||||||
player.moveCards(card, Zone.EXILED, source, game);
|
player.moveCards(card, Zone.EXILED, source, game);
|
||||||
return new CreateTokenCopyTargetEffect().setSavedPermanent(
|
return new CreateTokenCopyTargetEffect().setSavedPermanent(
|
||||||
new PermanentCard(card, source.getControllerId(), game)
|
new PermanentCard(card, source.getControllerId(), game)
|
||||||
|
@ -128,7 +129,6 @@ class KinzuOfTheBleakCovenCost extends CostImpl {
|
||||||
//Need to be able to Exile the Card as it is part of the cost. Can't pay if the target is not legal.
|
//Need to be able to Exile the Card as it is part of the cost. Can't pay if the target is not legal.
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
System.out.println(text);
|
|
||||||
return game.getPlayer(controllerId).getLife() >= lifeToPayAmount || lifeToPayAmount == 0;
|
return game.getPlayer(controllerId).getLife() >= lifeToPayAmount || lifeToPayAmount == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue