summaryrefslogtreecommitdiff
path: root/src/main/java/darkknight/jewelrycraft/curses/Curse.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/curses/Curse.java')
-rw-r--r--src/main/java/darkknight/jewelrycraft/curses/Curse.java14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/curses/Curse.java b/src/main/java/darkknight/jewelrycraft/curses/Curse.java
index f833542..75b4056 100644
--- a/src/main/java/darkknight/jewelrycraft/curses/Curse.java
+++ b/src/main/java/darkknight/jewelrycraft/curses/Curse.java
@@ -3,8 +3,11 @@ package darkknight.jewelrycraft.curses;
import java.util.ArrayList;
import java.util.Random;
import net.minecraft.entity.Entity;
+import net.minecraft.entity.EntityLivingBase;
+import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
+import net.minecraftforge.client.event.RenderPlayerEvent;
public class Curse
{
@@ -77,7 +80,10 @@ public class Curse
* @param world
* @param player
*/
- public void deathAction(World world, EntityPlayer player)
+ public void playerDeathAction(World world, EntityPlayer player)
+ {}
+
+ public void entityDeathAction(World world, EntityLivingBase target, EntityPlayer player)
{}
/**
@@ -101,6 +107,12 @@ public class Curse
public void attackedByPlayerAction(World world, EntityPlayer player, Entity target)
{}
+ public void entityDropItems(EntityPlayer player, Entity target, ArrayList<EntityItem> drops)
+ {}
+
+ public void playerRender(EntityPlayer player, RenderPlayerEvent.Specials.Post event)
+ {}
+
public boolean itemToss()
{
return false;