Minor code laying out a new sigil. No functionality currently.
This commit is contained in:
parent
5743d9f475
commit
a2317a3a8a
2 changed files with 37 additions and 1 deletions
|
@ -0,0 +1,20 @@
|
|||
package WayofTime.bloodmagic.item.sigil;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.world.World;
|
||||
import WayofTime.bloodmagic.util.handler.event.GenericHandler;
|
||||
|
||||
public class ItemSigilFilledHand extends ItemSigilToggleableBase
|
||||
{
|
||||
public ItemSigilFilledHand()
|
||||
{
|
||||
super("hand", 100);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected)
|
||||
{
|
||||
GenericHandler.filledHandMap.put(player, 4);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue