mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
19 lines
529 B
Java
19 lines
529 B
Java
package de.ellpeck.naturesaura.items;
|
|
|
|
import de.ellpeck.naturesaura.NaturesAura;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
|
|
|
// Name (Glowing) ambiguous?
|
|
public class ItemGlowing extends ItemImpl {
|
|
public ItemGlowing(String baseName) {
|
|
super(baseName, new Properties().group(NaturesAura.CREATIVE_TAB));
|
|
}
|
|
|
|
@Override
|
|
@OnlyIn(Dist.CLIENT)
|
|
public boolean hasEffect(ItemStack stack) {
|
|
return true;
|
|
}
|
|
}
|