mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
Fixed some display problems with emblems and there abilities on the stack.
This commit is contained in:
parent
3b8a75588b
commit
f540e78045
4 changed files with 13 additions and 13 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue