Fixed some display problems with emblems and there abilities on the stack.

This commit is contained in:
LevelX2 2013-07-05 18:49:42 +02:00
parent 3b8a75588b
commit f540e78045
4 changed files with 13 additions and 13 deletions

View file

@ -47,12 +47,11 @@ import java.util.UUID;
*/
public class Emblem implements CommandObject {
private String name;
private static List emptyList = new ArrayList();
private static ObjectColor emptyColor = new ObjectColor();
private static ManaCosts emptyCost = new ManaCostsImpl();
private String name;
private UUID id;
private UUID controllerId;
private UUID sourceId;
@ -62,7 +61,7 @@ public class Emblem implements CommandObject {
this.id = UUID.randomUUID();
}
public Emblem(Emblem emblem) {
public Emblem(final Emblem emblem) {
this.id = emblem.id;
this.controllerId = emblem.controllerId;
this.sourceId = emblem.sourceId;
@ -100,7 +99,7 @@ public class Emblem implements CommandObject {
@Override
public String getImageName() {
return "";
return this.name;
}
@Override