mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
* Lion's Eye Diamond - Fixed that it now only can be cast at the time an instant spell could be cast.
This commit is contained in:
parent
c958a1af25
commit
8d8a2074f0
5 changed files with 40 additions and 2 deletions
|
|
@ -1007,9 +1007,16 @@ public class ComputerPlayer extends PlayerImpl implements Player {
|
|||
log.debug("findPlayables: " + playableInstant.toString() + "---" + playableNonInstant.toString() + "---" + playableAbilities.toString() );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public boolean playMana(ManaCost unpaid, Game game) {
|
||||
payManaMode = true;
|
||||
boolean result = playManaHandling(unpaid, game);
|
||||
payManaMode = false;
|
||||
return result;
|
||||
}
|
||||
|
||||
protected boolean playManaHandling(ManaCost unpaid, Game game) {
|
||||
// log.info("paying for " + unpaid.getText());
|
||||
ManaCost cost;
|
||||
List<Permanent> producers;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue