Changed to a non-retarded way of sending a packet for the Demon Aura and created the Demon Will Viewer interface.

This commit is contained in:
WayofTime 2016-07-10 18:22:01 -04:00
parent 98ed17fe21
commit 12094c1153
3 changed files with 60 additions and 14 deletions

View file

@ -0,0 +1,12 @@
package WayofTime.bloodmagic.api.iface;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
public interface IDemonWillViewer
{
boolean canSeeDemonWillAura(World world, ItemStack stack, EntityPlayer player);
int getDemonWillAuraResolution(World world, ItemStack stack, EntityPlayer player);
}