123456789101112131415161718192021 |
- package me.km.items.noglint;
- import net.minecraft.item.ItemSplashPotion;
- import net.minecraft.item.ItemStack;
- import net.minecraftforge.fml.relauncher.Side;
- import net.minecraftforge.fml.relauncher.SideOnly;
- public class ItemNoGlintSplashPotion extends ItemSplashPotion
- {
- public ItemNoGlintSplashPotion()
- {
- super.setMaxStackSize(16);
- }
-
- @SideOnly(Side.CLIENT)
- @Override
- public boolean hasEffect(ItemStack stack)
- {
- return stack.isItemEnchanted();
- }
- }
|