aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/1037-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch
diff options
context:
space:
mode:
authorRiley Park <[email protected]>2024-05-15 17:06:59 -0700
committerGitHub <[email protected]>2024-05-15 17:06:59 -0700
commitf17519338bc589c045e0b32bfc37e048b23544d5 (patch)
treee50182ec698b4a9de8f366f485ee089b1901bbd9 /patches/server/1037-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch
parent3fc93581bb876e8149b2ca423375a98f5ca12d27 (diff)
downloadPaper-f17519338bc589c045e0b32bfc37e048b23544d5.tar.gz
Paper-f17519338bc589c045e0b32bfc37e048b23544d5.zip
Expose server build information (#10729)
* Expose server build information * squash patches * final tweaks --------- Co-authored-by: Jake Potrebic <[email protected]> Co-authored-by: masmc05 <[email protected]>
Diffstat (limited to 'patches/server/1037-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch')
-rw-r--r--patches/server/1037-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/patches/server/1037-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch b/patches/server/1037-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch
new file mode 100644
index 0000000000..e471865c85
--- /dev/null
+++ b/patches/server/1037-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch
@@ -0,0 +1,34 @@
+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 2338e41fde55559249d5f212697235e789b20b2a..517e10c3d8b1549cd30fd0e7cf2bcb35e88eb8ed 100644
+--- a/src/main/java/net/minecraft/world/entity/LivingEntity.java
++++ b/src/main/java/net/minecraft/world/entity/LivingEntity.java
+@@ -2226,7 +2226,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
+ }
+
+ // CraftBukkit start
+- protected boolean actuallyHurt(final DamageSource damagesource, float f) { // void -> boolean, add final
++ protected boolean actuallyHurt(final DamageSource damagesource, float f) { // void -> boolean, add final // Paper - return false ONLY if event cancelled
+ if (!this.isInvulnerableTo(damagesource)) {
+ final boolean human = this instanceof net.minecraft.world.entity.player.Player;
+ float originalDamage = f;
+@@ -2398,12 +2398,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() {