mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-15 23:20:44 +00:00
fix space kelp
This commit is contained in:
@@ -13,8 +13,8 @@ public final class SpaceKelp {
|
|||||||
public static ItemStack create(final int amount) {
|
public static ItemStack create(final int amount) {
|
||||||
final ItemStack item = new ItemStack(Material.KELP, amount);
|
final ItemStack item = new ItemStack(Material.KELP, amount);
|
||||||
item.editMeta(meta -> {
|
item.editMeta(meta -> {
|
||||||
meta.displayName(Component.text("Space Kelp"));
|
meta.displayName(Component.empty().append(Component.text("Space Kelp")));
|
||||||
meta.lore(List.of(Component.text("Kelp from Zorweth")));
|
meta.lore(List.of(Component.empty().append(Component.text("Kelp from Zorweth"))));
|
||||||
});
|
});
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user