Finalized Solar Powered perk. Worked a bit more on Grim Reaper's Sprint.

This commit is contained in:
WayofTime 2016-02-11 14:10:43 -05:00
parent 8feae53462
commit 69eb621fc8
11 changed files with 223 additions and 9 deletions

View file

@ -1,5 +1,6 @@
package WayofTime.bloodmagic.api.livingArmour;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.ai.attributes.AttributeModifier;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
@ -39,7 +40,7 @@ public abstract class LivingArmourUpgrade
*
* @return 0 for no damage blocked, 1 for full damage blocked
*/
public double getArmourProtection(DamageSource source)
public double getArmourProtection(EntityLivingBase wearer, DamageSource source)
{
return 0;
}