forked from External/mage
fixed issue 39
This commit is contained in:
parent
cb3e454002
commit
632775c617
5 changed files with 8 additions and 18 deletions
|
|
@ -32,7 +32,6 @@ import java.util.ArrayList;
|
|||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Zone;
|
||||
|
||||
import mage.abilities.Abilities;
|
||||
import mage.abilities.AbilitiesImpl;
|
||||
|
|
@ -57,7 +56,6 @@ public abstract class MageObjectImpl<T extends MageObjectImpl<T>> implements Mag
|
|||
protected MageInt power;
|
||||
protected MageInt toughness;
|
||||
protected MageInt loyalty;
|
||||
// protected Zone zone;
|
||||
|
||||
@Override
|
||||
public abstract T copy();
|
||||
|
|
@ -81,7 +79,6 @@ public abstract class MageObjectImpl<T extends MageObjectImpl<T>> implements Mag
|
|||
name = object.name;
|
||||
manaCost = object.manaCost.copy();
|
||||
text = object.text;
|
||||
// zone = object.zone;
|
||||
color = object.color.copy();
|
||||
power = object.power.copy();
|
||||
toughness = object.toughness.copy();
|
||||
|
|
@ -158,16 +155,6 @@ public abstract class MageObjectImpl<T extends MageObjectImpl<T>> implements Mag
|
|||
return manaCost;
|
||||
}
|
||||
|
||||
// @Override
|
||||
// public Zone getZone() {
|
||||
// return zone;
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public void setZone(Zone zone) {
|
||||
// this.zone = zone;
|
||||
// }
|
||||
|
||||
@Override
|
||||
public void adjustCosts(Ability ability, Game game) {}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue