Update EnchantedIronApple.java

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

View File

@@ -8,5 +8,9 @@ public class EnchantedIronApple extends Item {
super(settings); super(settings);
} }
public boolean hasGlint(ItemStack stack) {
return true;
}
} }