Possible fix to (many of the) abnormal death events concerning the sacrificial Dagger (#1554)

* Possible fix to (many of the) abnormal death events concerning the sacrifical dagger.

=> #1444

Works with Grim Reaper's Sprint, not tested for anything else.

* Being special, players can survive massive blood loss up until 1 heart remains.

(Math.floor() caused players to die when they sacrificed with 3 health remaining)
This commit is contained in:
Tobias Gremeyer 2019-04-14 15:38:17 +00:00 committed by Nick Ignoffo
parent 7c767b3bbf
commit 572d8eff4f

View file

@ -94,14 +94,16 @@ public class ItemSacrificialDagger extends ItemEnum<ItemSacrificialDagger.Dagger
return super.onItemRightClick(world, player, hand);
if (evt.shouldDrainHealth) {
DamageSourceBloodMagic damageSrc = DamageSourceBloodMagic.INSTANCE;
player.hurtResistantTime = 0;
player.attackEntityFrom(DamageSourceBloodMagic.INSTANCE, 0.001F);
player.setHealth(Math.max(player.getHealth() - 2, 0.0001f));
if (player.getHealth() <= 0.001f) {
player.onDeath(DamageSourceBloodMagic.INSTANCE);
player.setHealth(0);
float playerHealth = player.getHealth();
if (Math.ceil(player.getHealth() - 2) <= 0) {
player.attackEntityFrom(damageSrc, Float.MAX_VALUE);
} else {
float damageAmount = net.minecraftforge.common.ForgeHooks.onLivingDamage(player, damageSrc, 2.0F);
player.getCombatTracker().trackDamage(damageSrc, playerHealth, damageAmount);
player.setHealth(Math.max(player.getHealth() - 2, 0.001f));
}
// player.attackEntityFrom(BloodMagicAPI.getDamageSource(), 2.0F);
}
if (!evt.shouldFillAltar)