aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0959-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0959-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch')
-rw-r--r--patches/server/0959-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch50
1 files changed, 50 insertions, 0 deletions
diff --git a/patches/server/0959-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch b/patches/server/0959-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch
new file mode 100644
index 0000000000..2965a66127
--- /dev/null
+++ b/patches/server/0959-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch
@@ -0,0 +1,50 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jake Potrebic <[email protected]>
+Date: Sat, 27 Apr 2024 09:44:53 -0700
+Subject: [PATCH] Revert to vanilla handling of LivingEntity#actuallyHurt
+
+
+diff --git a/src/main/java/net/minecraft/world/entity/LivingEntity.java b/src/main/java/net/minecraft/world/entity/LivingEntity.java
+index 6ff33a6d46daffd15310f21ec00d4861478b360f..b1e894e9a9cd87f7259302d15d5b5b0e2b32c4ea 100644
+--- a/src/main/java/net/minecraft/world/entity/LivingEntity.java
++++ b/src/main/java/net/minecraft/world/entity/LivingEntity.java
+@@ -1425,7 +1425,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
+ }
+
+ this.noActionTime = 0;
+- float f1 = amount;
++ float f1 = amount; final float originalAmount = f1; // Paper - revert to vanilla #hurt - OBFHELPER
+ boolean flag = amount > 0.0F && this.isDamageSourceBlocked(source); // Copied from below
+ float f2 = 0.0F;
+
+@@ -1479,6 +1479,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
+ if (!this.actuallyHurt(source, (float) event.getFinalDamage() - this.lastHurt, event)) {
+ return false;
+ }
++ if (this instanceof ServerPlayer && event.getDamage() == 0 && originalAmount == 0) return false; // Paper - revert to vanilla damage - players are not affected by damage that is 0 - skip damage if the vanilla damage is 0 and was not modified by plugins in the event.
+ // CraftBukkit end
+ this.lastHurt = amount;
+ flag1 = false;
+@@ -1487,6 +1488,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
+ if (!this.actuallyHurt(source, (float) event.getFinalDamage(), event)) {
+ return false;
+ }
++ if (this instanceof ServerPlayer && event.getDamage() == 0 && originalAmount == 0) return false; // Paper - revert to vanilla damage - players are not affected by damage that is 0 - skip damage if the vanilla damage is 0 and was not modified by plugins in the event.
+ this.lastHurt = amount;
+ this.invulnerableTime = this.invulnerableDuration; // CraftBukkit - restore use of maxNoDamageTicks
+ // this.actuallyHurt(damagesource, f);
+@@ -2411,12 +2413,12 @@ public abstract class LivingEntity extends Entity implements Attackable {
+
+ return true;
+ } else {
+- return originalDamage > 0;
++ return true; // Paper - return false ONLY if event was cancelled
+ }
+ // CraftBukkit end
+ }
+ }
+- return false; // CraftBukkit
++ return true; // CraftBukkit // Paper - return false ONLY if event was cancelled
+ }
+
+ public CombatTracker getCombatTracker() {