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

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