2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
|
|
|
Date: Tue, 14 Jan 2020 15:28:28 -0800
|
|
|
|
Subject: [PATCH] Lag compensate eating
|
|
|
|
|
|
|
|
When the server is lagging, players will wait longer when eating.
|
|
|
|
Change to also use a time check instead if it passes.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/LivingEntity.java b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2023-02-13 18:52:27 +01:00
|
|
|
index ba4e0bac019b68da166b277028015999139d2981..b448a7b6318311ce3542e49a2f1670ccac77c215 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2022-12-07 20:22:28 +01:00
|
|
|
@@ -3592,6 +3592,11 @@ public abstract class LivingEntity extends Entity {
|
2021-06-11 14:02:28 +02:00
|
|
|
return ((Byte) this.entityData.get(LivingEntity.DATA_LIVING_ENTITY_FLAGS) & 2) > 0 ? InteractionHand.OFF_HAND : InteractionHand.MAIN_HAND;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - lag compensate eating
|
|
|
|
+ protected long eatStartTime;
|
|
|
|
+ protected int totalEatTimeTicks;
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
private void updatingUsingItem() {
|
|
|
|
if (this.isUsingItem()) {
|
2022-12-07 20:22:28 +01:00
|
|
|
if (ItemStack.isSame(this.getItemInHand(this.getUsedItemHand()), this.useItem)) {
|
|
|
|
@@ -3609,8 +3614,12 @@ public abstract class LivingEntity extends Entity {
|
2021-06-13 21:29:58 +02:00
|
|
|
if (this.shouldTriggerItemUseEffects()) {
|
|
|
|
this.triggerItemUseEffects(stack, 5);
|
|
|
|
}
|
|
|
|
-
|
|
|
|
- if (--this.useItemRemaining == 0 && !this.level.isClientSide && !stack.useOnRelease()) {
|
|
|
|
+ // Paper start - lag compensate eating
|
|
|
|
+ // we add 1 to the expected time to avoid lag compensating when we should not
|
|
|
|
+ boolean shouldLagCompensate = this.useItem.getItem().isEdible() && this.eatStartTime != -1 && (System.nanoTime() - this.eatStartTime) > ((1 + this.totalEatTimeTicks) * 50 * (1000 * 1000));
|
|
|
|
+ if ((--this.useItemRemaining == 0 || shouldLagCompensate) && !this.level.isClientSide && !this.useItem.useOnRelease()) {
|
|
|
|
+ this.useItemRemaining = 0;
|
|
|
|
+ // Paper end
|
|
|
|
this.completeUsingItem();
|
|
|
|
}
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2022-12-07 20:22:28 +01:00
|
|
|
@@ -3658,7 +3667,10 @@ public abstract class LivingEntity extends Entity {
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
if (!itemstack.isEmpty() && !this.isUsingItem() || forceUpdate) { // Paper use override flag
|
|
|
|
this.useItem = itemstack;
|
|
|
|
- this.useItemRemaining = itemstack.getUseDuration();
|
|
|
|
+ // Paper start - lag compensate eating
|
|
|
|
+ this.useItemRemaining = this.totalEatTimeTicks = itemstack.getUseDuration();
|
|
|
|
+ this.eatStartTime = System.nanoTime();
|
|
|
|
+ // Paper end
|
|
|
|
if (!this.level.isClientSide) {
|
|
|
|
this.setLivingEntityFlag(1, true);
|
2021-11-24 08:37:09 +01:00
|
|
|
this.setLivingEntityFlag(2, hand == InteractionHand.OFF_HAND);
|
2022-12-07 20:22:28 +01:00
|
|
|
@@ -3683,7 +3695,10 @@ public abstract class LivingEntity extends Entity {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
} else if (!this.isUsingItem() && !this.useItem.isEmpty()) {
|
|
|
|
this.useItem = ItemStack.EMPTY;
|
|
|
|
- this.useItemRemaining = 0;
|
|
|
|
+ // Paper start - lag compensate eating
|
|
|
|
+ this.useItemRemaining = this.totalEatTimeTicks = 0;
|
|
|
|
+ this.eatStartTime = -1L;
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-07 20:22:28 +01:00
|
|
|
@@ -3817,7 +3832,10 @@ public abstract class LivingEntity extends Entity {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.useItem = ItemStack.EMPTY;
|
|
|
|
- this.useItemRemaining = 0;
|
|
|
|
+ // Paper start - lag compensate eating
|
|
|
|
+ this.useItemRemaining = this.totalEatTimeTicks = 0;
|
|
|
|
+ this.eatStartTime = -1L;
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isBlocking() {
|