mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 04:22:01 -08:00
* Fervent Champion - Fixed that it's possible to equip the Champion also without having the regular mana (#6698).
This commit is contained in:
parent
6e68e038b6
commit
82dfd76ee3
4 changed files with 58 additions and 13 deletions
|
|
@ -3420,14 +3420,7 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
boolean previousState = game.inCheckPlayableState();
|
||||
game.setCheckPlayableState(true);
|
||||
try {
|
||||
// basic mana
|
||||
ManaOptions availableMana = getManaAvailable(game);
|
||||
// availableMana.addMana(manaPool.getMana());
|
||||
// conditional mana
|
||||
// for (ConditionalMana conditionalMana : manaPool.getConditionalMana()) {
|
||||
// availableMana.addMana(conditionalMana);
|
||||
// }
|
||||
|
||||
ManaOptions availableMana = getManaAvailable(game); // get available mana options (mana pool and conditional mana added (but conditional still lose condition))
|
||||
boolean fromAll = fromZone.equals(Zone.ALL);
|
||||
if (hidden && (fromAll || fromZone == Zone.HAND)) {
|
||||
for (Card card : hand.getCards(game)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue