Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
Rebuild patches
Dieser Commit ist enthalten in:
Ursprung
73597ed865
Commit
77ca7ca07b
@ -375,6 +375,15 @@
|
|||||||
this.datawatcher.set(EntityLiving.HEALTH, MathHelper.a(f, 0.0F, this.getMaxHealth()));
|
this.datawatcher.set(EntityLiving.HEALTH, MathHelper.a(f, 0.0F, this.getMaxHealth()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -703,7 +903,7 @@
|
||||||
|
return false;
|
||||||
|
} else if (this.world.isClientSide) {
|
||||||
|
return false;
|
||||||
|
- } else if (this.getHealth() <= 0.0F) {
|
||||||
|
+ } else if (this.dead || this.killed || this.getHealth() <= 0.0F) { // CraftBukkit - Don't allow entities that got set to dead/killed elsewhere to get damaged and die
|
||||||
|
return false;
|
||||||
|
} else if (damagesource.p() && this.hasEffect(MobEffects.FIRE_RESISTANCE)) {
|
||||||
|
return false;
|
||||||
@@ -711,15 +911,17 @@
|
@@ -711,15 +911,17 @@
|
||||||
this.ticksFarFromPlayer = 0;
|
this.ticksFarFromPlayer = 0;
|
||||||
float f1 = f;
|
float f1 = f;
|
||||||
@ -492,15 +501,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -703,7 +903,7 @@
|
|
||||||
return false;
|
|
||||||
} else if (this.world.isClientSide) {
|
|
||||||
return false;
|
|
||||||
- } else if (this.getHealth() <= 0.0F) {
|
|
||||||
+ } else if (this.dead || this.killed || this.getHealth() <= 0.0F) { // CraftBukkit - Don't allow entities that got set to dead/killed elsewhere to get damaged and die
|
|
||||||
return false;
|
|
||||||
} else if (damagesource.p() && this.hasEffect(MobEffects.FIRE_RESISTANCE)) {
|
|
||||||
return false;
|
|
||||||
@@ -958,6 +1191,12 @@
|
@@ -958,6 +1191,12 @@
|
||||||
boolean flag = this.lastDamageByPlayerTime > 0;
|
boolean flag = this.lastDamageByPlayerTime > 0;
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren