Added "tapped" option for putOntoBattlefield. Fixed amulet of vigor

This commit is contained in:
Plopman 2013-07-03 21:24:47 +02:00
parent ba09f43f56
commit f43b3d1ee2
6 changed files with 20 additions and 20 deletions

View file

@ -508,6 +508,12 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
return false;
}
@Override
public boolean putOntoBattlefield(Game game, Zone fromZone, UUID sourceId, UUID controllerId, boolean tapped) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean putOntoBattlefield(Game game, Zone fromZone, UUID sourceId, UUID controllerId) {
throw new UnsupportedOperationException("Unsupported operation");
@ -614,4 +620,5 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
public Card getCard() {
return card;
}
}