forked from External/mage
fixed downloading images from flip cards according to changes on magiccards.info site
This commit is contained in:
parent
850103c694
commit
42108ef59c
15 changed files with 96 additions and 73 deletions
|
|
@ -28,8 +28,6 @@
|
|||
|
||||
package mage.game.stack;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.Constants.Zone;
|
||||
|
|
@ -53,6 +51,9 @@ import mage.players.Player;
|
|||
import mage.target.Target;
|
||||
import mage.watchers.Watcher;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
|
|
@ -339,6 +340,11 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
|
|||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isFlipCard() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canTransform() {
|
||||
return false;
|
||||
|
|
@ -437,5 +443,7 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
|
|||
public Zone getFromZone() {
|
||||
return this.fromZone;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue