working damage

This commit is contained in:
dfsek
2021-02-25 00:45:25 -07:00
parent 4ca2f0c08d
commit 4569a9ed13

View File

@@ -30,7 +30,7 @@ public class FabricItemStack implements ItemStack {
@Override
public ItemMeta getItemMeta() {
if(delegate.isDamageable()) return new FabricDamageable(delegate);
if(delegate.isDamageable()) return new FabricDamageable(delegate.copy());
return new FabricItemMeta(delegate.copy());
}