Added Enchanted Netherite Apple class

This commit is contained in:
Steven Tracey
2020-11-23 11:04:41 -05:00
committed by GitHub
parent 06a6348d97
commit 20c7156d10

View File

@@ -0,0 +1,15 @@
package net.nevets.everythingvanilla.items;
import net.minecraft.item.Item;
public class EnchantedNetheriteApple extends Item {
public EnchantedNetheriteApple(Settings settings) {
super(settings);
}
public boolean hasGlint(ItemStack stack) {
return true;
}
}