Add overload of syphonAndDamageFromNetwork that takes a String

Accepts a String instead of an ItemStack, as I have just encountered a situation where I have access to the Owner's name, but not the ItemStack being used
This commit is contained in:
Alex 2014-10-23 10:17:57 +08:00
parent dc1357739b
commit 49ccf2a36e

View file

@ -86,6 +86,20 @@ public class SoulNetworkHandler
return true;
}
public static boolean syphonAndDamageFromNetwork(String ownerName, EntityPlayer player, int damageToBeDone)
{
if (player.worldObj.isRemote)
{
return false;
}
int amount = SoulNetworkHandler.syphonFromNetwork(ownerName, damageToBeDone);
hurtPlayer(player, damageToBeDone - amount);
return true;
}
public static boolean canSyphonFromOnlyNetwork(ItemStack ist, int damageToBeDone)
{