Fix CraftMetaBanner serialization.

This commit is contained in:
BuildTools 2014-12-02 15:29:04 +01:00
parent 275603d37a
commit 351edbf4e5
2 changed files with 8 additions and 2 deletions

View File

@ -145,8 +145,13 @@ public class CraftMetaBanner extends CraftMetaItem implements BannerMeta {
ImmutableMap.Builder<String, Object> serialize(ImmutableMap.Builder<String, Object> builder) {
super.serialize(builder);
builder.put(BASE.BUKKIT, base);
builder.put(PATTERNS.BUKKIT, ImmutableList.copyOf(patterns));
if(base != null){
builder.put(BASE.BUKKIT, base);
}
if(!patterns.isEmpty()){
builder.put(PATTERNS.BUKKIT, ImmutableList.copyOf(patterns));
}
return builder;
}

View File

@ -96,6 +96,7 @@ class CraftMetaItem implements ItemMeta, Repairable {
static {
classMap = ImmutableMap.<Class<? extends CraftMetaItem>, String>builder()
.put(CraftMetaBanner.class, "BANNER")
.put(CraftMetaBook.class, "BOOK")
.put(CraftMetaSkull.class, "SKULL")
.put(CraftMetaLeatherArmor.class, "LEATHER_ARMOR")