ItemNoGlintSplashPotion.java 504 B

123456789101112131415161718192021
  1. package me.km.items.noglint;
  2. import net.minecraft.item.ItemSplashPotion;
  3. import net.minecraft.item.ItemStack;
  4. import net.minecraftforge.fml.relauncher.Side;
  5. import net.minecraftforge.fml.relauncher.SideOnly;
  6. public class ItemNoGlintSplashPotion extends ItemSplashPotion
  7. {
  8. public ItemNoGlintSplashPotion()
  9. {
  10. super.setMaxStackSize(16);
  11. }
  12. @SideOnly(Side.CLIENT)
  13. @Override
  14. public boolean hasEffect(ItemStack stack)
  15. {
  16. return stack.isItemEnchanted();
  17. }
  18. }