2024-07-09 17:13:51 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2024-11-19 11:54:58 +01:00
|
|
|
From: Bjarne Koll <git@lynxplay.dev>
|
2024-07-09 17:13:51 +02:00
|
|
|
Date: Mon, 8 Jul 2024 22:01:08 +0200
|
|
|
|
Subject: [PATCH] Only call EntityDamageEvents before actuallyHurt
|
|
|
|
|
|
|
|
The recent upstream update moved around the event logic for
|
|
|
|
EntiyDamageEvent and its derivatives.
|
|
|
|
However, the event was called on every call to #hurt as it was moved out
|
|
|
|
of actuallyHurt.
|
|
|
|
|
|
|
|
This patch moves the invocation directly before the #actuallyHurt calls,
|
|
|
|
respective invulnerable timings.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/LivingEntity.java b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
Rework async chunk api implementation
Firstly, the old methods all routed to the CompletableFuture method.
However, the CF method could not guarantee that if the caller
was off-main that the future would be "completed" on-main. Since
the callback methods used the CF one, this meant that the callback
methods did not guarantee that the callbacks were to be called on
the main thread.
Now, all methods route to getChunkAtAsync(x, z, gen, urgent, cb)
so that the methods with the callback are guaranteed to invoke
the callback on the main thread. The CF behavior remains unchanged;
it may still appear to complete on main if invoked off-main.
Secondly, remove the scheduleOnMain invocation in the async
chunk completion. This unnecessarily delays the callback
by 1 tick.
Thirdly, add getChunksAtAsync(minX, minZ, maxX, maxZ, ...) which
will load chunks within an area. This method is provided as a helper
as keeping all chunks loaded within an area can be complicated to
implement for plugins (due to the lacking ticket API), and is
already implemented internally anyways.
Fourthly, remove the ticket addition that occured with getChunkAt
and getChunkAtAsync. The ticket addition may delay the unloading
of the chunk unnecessarily. It also fixes a very rare timing bug
where the future/callback would be completed after the chunk
unloads.
2024-11-19 07:34:32 +01:00
|
|
|
index 5616391f02f8599f5786a6d8e740a0ed9290627f..cfef1bff0080ffc662e3a4428116f7d4dc71eab2 100644
|
2024-07-09 17:13:51 +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
|
|
|
@@ -1489,12 +1489,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2024-07-09 17:13:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
- EntityDamageEvent event = this.handleEntityDamage(source, amount);
|
|
|
|
- amount = 0;
|
|
|
|
- amount += (float) event.getDamage(DamageModifier.BASE);
|
|
|
|
- amount += (float) event.getDamage(DamageModifier.BLOCKING);
|
|
|
|
- amount += (float) event.getDamage(DamageModifier.FREEZING);
|
|
|
|
- amount += (float) event.getDamage(DamageModifier.HARD_HAT);
|
|
|
|
+ EntityDamageEvent event; // Paper - move this into the actual invuln check....
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
this.walkAnimation.setSpeed(1.5F);
|
2024-10-27 18:11:15 +01:00
|
|
|
@@ -1509,6 +1504,11 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2024-07-09 17:13:51 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - only call damage event when actuallyHurt will be called - move call logic down
|
|
|
|
+ event = this.handleEntityDamage(source, amount);
|
|
|
|
+ amount = computeAmountFromEntityDamageEvent(event);
|
|
|
|
+ // Paper end - only call damage event when actuallyHurt will be called - move call logic down
|
|
|
|
+
|
|
|
|
// CraftBukkit start
|
2024-10-25 00:08:35 +02:00
|
|
|
if (!this.actuallyHurt(world, source, (float) event.getFinalDamage() - this.lastHurt, event)) {
|
2024-07-09 17:13:51 +02:00
|
|
|
return false;
|
2024-10-27 18:11:15 +01:00
|
|
|
@@ -1518,6 +1518,10 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2024-07-09 17:13:51 +02:00
|
|
|
this.lastHurt = amount;
|
|
|
|
flag1 = false;
|
|
|
|
} else {
|
|
|
|
+ // Paper start - only call damage event when actuallyHurt will be called - move call logic down
|
|
|
|
+ event = this.handleEntityDamage(source, amount);
|
|
|
|
+ amount = computeAmountFromEntityDamageEvent(event);
|
|
|
|
+ // Paper end - only call damage event when actuallyHurt will be called - move call logic down
|
|
|
|
// CraftBukkit start
|
2024-10-25 00:08:35 +02:00
|
|
|
if (!this.actuallyHurt(world, source, (float) event.getFinalDamage(), event)) {
|
2024-07-09 17:13:51 +02:00
|
|
|
return false;
|
2024-10-27 18:11:15 +01:00
|
|
|
@@ -1653,6 +1657,18 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2024-07-09 17:13:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - only call damage event when actuallyHurt will be called - move out amount computation logic
|
|
|
|
+ private float computeAmountFromEntityDamageEvent(final EntityDamageEvent event) {
|
|
|
|
+ // Taken from hurt()'s craftbukkit diff.
|
|
|
|
+ float amount = 0;
|
|
|
|
+ amount += (float) event.getDamage(DamageModifier.BASE);
|
|
|
|
+ amount += (float) event.getDamage(DamageModifier.BLOCKING);
|
|
|
|
+ amount += (float) event.getDamage(DamageModifier.FREEZING);
|
|
|
|
+ amount += (float) event.getDamage(DamageModifier.HARD_HAT);
|
|
|
|
+ return amount;
|
|
|
|
+ }
|
|
|
|
+ // Paper end - only call damage event when actuallyHurt will be called - move out amount computation logic
|
|
|
|
+
|
|
|
|
protected void blockUsingShield(LivingEntity attacker) {
|
|
|
|
attacker.blockedByShield(this);
|
|
|
|
}
|