mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
18 lines
411 B
Java
18 lines
411 B
Java
|
package de.ellpeck.naturesaura.items;
|
||
|
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraftforge.fml.relauncher.Side;
|
||
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
||
|
|
||
|
public class ItemGlowing extends ItemImpl {
|
||
|
public ItemGlowing(String baseName) {
|
||
|
super(baseName);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
@SideOnly(Side.CLIENT)
|
||
|
public boolean hasEffect(ItemStack stack) {
|
||
|
return true;
|
||
|
}
|
||
|
}
|