Fixed Sacrificial Dagger so it properly bypasses armour reduction checks.

This commit is contained in:
WayofTime 2016-02-14 08:26:19 -05:00
parent 1787f50a65
commit 01d4bdffa2
2 changed files with 9 additions and 1 deletions

View file

@ -12,6 +12,7 @@ Version 2.0.0-17
- Phantom Bridge
- Ender Severance
- Haste
- Dagger now bypasses checks of armour
------------------------------------------------------
Version 2.0.0-16

View file

@ -103,7 +103,14 @@ public class ItemSacrificialDagger extends Item
if (evt.shouldDrainHealth)
{
player.hurtResistantTime = 0;
player.attackEntityFrom(BloodMagicAPI.getDamageSource(), 2.0F);
player.attackEntityFrom(BloodMagicAPI.getDamageSource(), 0.001F);
player.setHealth(Math.max(player.getHealth() - 2, 0.0001f));
if (player.getHealth() <= 0.001f)
{
player.onDeath(BloodMagicAPI.getDamageSource());
player.setHealth(0);
}
// player.attackEntityFrom(BloodMagicAPI.getDamageSource(), 2.0F);
}
if (!evt.shouldFillAltar)