3
0
Fork 1

修复mod的防护类功能失效并且导致护甲直接失效的bug

kcx-1614
聪聪 2017-08-10 13:27:43 +08:00
parent 75ee4d8b54
commit 060d7a1bc2
1 changed files with 1 additions and 1 deletions

View File

@ -420,10 +420,10 @@
- p_70665_2_ = Math.max(p_70665_2_ - this.getAbsorptionAmount(), 0.0F);
- this.setAbsorptionAmount(this.getAbsorptionAmount() - (f1 - p_70665_2_));
+ final boolean human = this instanceof EntityPlayer;
+ float originalDamage = f;
+ // Cauldron start - apply forge damage hook
+ f = ForgeHooks.onLivingHurt(this, damagesource, f);
+ if (f < 0) return true;
+ float originalDamage = f;
+ // Cauldron end
+ Function<Double, Double> hardHat = new Function<Double, Double>() {
+ @Override