Fixed Sacrificial Dagger so it properly bypasses armour reduction checks.
This commit is contained in:
parent
1787f50a65
commit
01d4bdffa2
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue