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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}
}