Update EnchantedPlatinumApple.java

Added enchanted glint
This commit is contained in:
Steven Tracey
2020-11-23 10:50:22 -05:00
committed by GitHub
parent 84c9bb9ec5
commit a239d49ebe

View File

@@ -5,9 +5,10 @@ import net.minecraft.item.Item;
public class EnchantedPlatinumApple extends Item { public class EnchantedPlatinumApple extends Item {
public EnchantedPlatinumApple(Settings settings) { public EnchantedPlatinumApple(Settings settings) {
super(settings); super(settings);
}
public boolean hasGlint(ItemStack stack) {
return true;
} }
} }