Added more augmentations for the Lava Ritual.

This commit is contained in:
WayofTime 2016-10-23 20:59:49 -04:00
parent 731ba99fa3
commit 6b27896859
4 changed files with 116 additions and 3 deletions

View file

@ -93,6 +93,11 @@ public class Utils
return null;
}
public static boolean isImmuneToFireDamage(EntityLivingBase entity)
{
return entity.isImmuneToFire() || entity.isPotionActive(MobEffects.FIRE_RESISTANCE);
}
public static boolean isPlayerBesideSolidBlockFace(EntityPlayer player)
{
World world = player.worldObj;