13
0
geforkt von Mirrors/Velocity

Fix compile error due to yet another breaking change in Adventure

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-09-10 10:57:55 -04:00
Ursprung fd163a8ed3
Commit 7650eedb7a

Datei anzeigen

@ -49,7 +49,7 @@ public class VelocityLegacyHoverEventSerializer implements LegacyHoverEventSeria
}
byte count = item.getByte("Count", (byte) 1);
return new ShowItem(key, count, BinaryTagHolder.of(snbt));
return ShowItem.of(key, count, BinaryTagHolder.of(snbt));
}
@Override
@ -65,7 +65,7 @@ public class VelocityLegacyHoverEventSerializer implements LegacyHoverEventSeria
name = TextComponent.of(item.getString("name"));
}
return new ShowEntity(Key.of(item.getString("type")),
return ShowEntity.of(Key.of(item.getString("type")),
UUID.fromString(item.getString("id")),
name);
}