mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fixed phyrexian mana can't be paid when player has 2 life.
This commit is contained in:
parent
4be5ae4fd0
commit
259fce0182
1 changed files with 3 additions and 3 deletions
|
@ -28,13 +28,13 @@
|
|||
|
||||
package mage.abilities.costs.mana;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.Constants.ColoredManaSymbol;
|
||||
import mage.abilities.Ability;
|
||||
import mage.game.Game;
|
||||
import mage.players.ManaPool;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author nantuko
|
||||
|
@ -70,7 +70,7 @@ public class PhyrexianManaCost extends ColoredManaCost {
|
|||
if (!game.getPlayer(controllerId).isLifeTotalCanChange()) {
|
||||
return false;
|
||||
}
|
||||
return game.getPlayer(controllerId).getLife() > 2;
|
||||
return game.getPlayer(controllerId).getLife() >= 2;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue