2024-04-27 23:35:53 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
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
|
2024-06-15 18:28:18 +02:00
|
|
|
index fd6b21f7a196e1232c0bb03335bd78417f55c5bb..66707853328b6b23771c88abd0cf5a7ef766bb71 100644
|
2024-04-27 23:35:53 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2024-06-13 16:45:27 +02:00
|
|
|
@@ -2210,7 +2210,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2024-04-27 23:35:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
2024-06-13 16:45:27 +02:00
|
|
|
@@ -2382,12 +2382,12 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2024-04-27 23:35:53 +02:00
|
|
|
|
2024-04-28 03:00:01 +02:00
|
|
|
return true;
|
2024-04-27 23:35:53 +02:00
|
|
|
} else {
|
2024-06-13 16:45:27 +02:00
|
|
|
- return originalDamage > 0;
|
2024-04-28 03:00:01 +02:00
|
|
|
+ return true; // Paper - return false ONLY if event was cancelled
|
2024-04-27 23:35:53 +02:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
- return false; // CraftBukkit
|
|
|
|
+ return true; // CraftBukkit // Paper - return false ONLY if event was cancelled
|
|
|
|
}
|
|
|
|
|
|
|
|
public CombatTracker getCombatTracker() {
|