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-11-04 18:42:38 +01:00
index 241c0b1d509bf60104820914a32b81edfdbb33c4..fe545447bdb982355491ec83c14993325dcc799d 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-10-27 18:11:15 +01:00
@@ -1455,7 +1455,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
2024-10-24 16:02:45 +02:00
amount = 0.0F;
2024-07-12 09:47:50 +02:00
}
- 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-10-27 18:11:15 +01:00
@@ -1513,6 +1513,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
2024-10-24 16:02:45 +02:00
if (!this.actuallyHurt(world, 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-10-27 18:11:15 +01:00
@@ -1521,6 +1522,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
2024-10-24 16:02:45 +02:00
if (!this.actuallyHurt(world, source, (float) event.getFinalDamage(), 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
this.lastHurt = amount;
this.invulnerableTime = this.invulnerableDuration; // CraftBukkit - restore use of maxNoDamageTicks
2024-10-24 16:02:45 +02:00
// this.actuallyHurt(worldserver, damagesource, f);
2024-11-04 18:42:38 +01:00
@@ -2487,12 +2489,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() {