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-07-12 09:47:50 +02:00
index 8072d31525d9c7890804bb879893f1a69820e32d..7b019553d88a4294fad1107c5f28ba3fff985d63 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-07-12 09:47:50 +02:00
@@ -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;
2024-07-08 21:20:18 +02:00
@@ -1479,6 +1479,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
if (!this.actuallyHurt(source, (float) event.getFinalDamage() - this.lastHurt, event)) {
2024-07-06 21:19:14 +02:00
return false;
}
2024-07-12 09:47:50 +02:00
+ 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.
2024-07-06 21:19:14 +02:00
// CraftBukkit end
this.lastHurt = amount;
flag1 = false;
2024-07-08 21:20:18 +02:00
@@ -1487,6 +1488,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
2024-07-06 21:19:14 +02:00
if (!this.actuallyHurt(source, (float) event.getFinalDamage(), event)) {
return false;
}
2024-07-12 09:47:50 +02:00
+ 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.
2024-07-06 21:19:14 +02:00
this.lastHurt = amount;
this.invulnerableTime = this.invulnerableDuration; // CraftBukkit - restore use of maxNoDamageTicks
// this.actuallyHurt(damagesource, f);
2024-07-08 21:20:18 +02:00
@@ -2411,12 +2413,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() {