fix decompacting

This commit is contained in:
okx-code
2026-06-28 12:58:01 +01:00
parent 22e348caa1
commit 0513c869b8

View File

@@ -171,9 +171,6 @@ public class DecompactingRecipe extends InputRecipe {
private void removeCompactLore(ItemStack is) {
is.editMeta(meta -> {
if (!meta.hasLore()) {
return;
}
List<Component> lore = meta.lore();
lore.remove(Component.empty().append(Component.text(compactedLore)));
meta.lore(lore);