mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
* Fixed that the color of cards cast face dwon and later turned face up was not set.
This commit is contained in:
parent
2eeabe2f01
commit
7daa476542
3 changed files with 70 additions and 2 deletions
|
|
@ -288,7 +288,7 @@ public class ZonesHandler {
|
|||
private static Card takeAttributesFromSpell(Card card, ZoneChangeEvent event, Game game) {
|
||||
if (Zone.STACK.equals(event.getFromZone())) {
|
||||
Spell spell = game.getStack().getSpell(event.getTargetId());
|
||||
if (spell != null) {
|
||||
if (spell != null && !spell.isFaceDown(game)) {
|
||||
boolean doCopy = false;
|
||||
if (!card.getColor(game).equals(spell.getColor(game))) {
|
||||
doCopy = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue