fix space kelp

This commit is contained in:
okx-code
2026-07-05 18:44:12 +01:00
parent 7f947c89e1
commit b79ddd2b83

View File

@@ -13,8 +13,8 @@ public final class SpaceKelp {
public static ItemStack create(final int amount) {
final ItemStack item = new ItemStack(Material.KELP, amount);
item.editMeta(meta -> {
meta.displayName(Component.text("Space Kelp"));
meta.lore(List.of(Component.text("Kelp from Zorweth")));
meta.displayName(Component.empty().append(Component.text("Space Kelp")));
meta.lore(List.of(Component.empty().append(Component.text("Kelp from Zorweth"))));
});
return item;
}