Paper/patches/server/0622-fix-cancelling-block-falling-causing-client-desync.patch

20 lines
1.2 KiB
Diff
Raw Normal View History

2021-06-15 04:59:31 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Trigary <trigary0@gmail.com>
Date: Sat, 27 Mar 2021 11:13:30 +0100
Subject: [PATCH] fix cancelling block falling causing client desync
diff --git a/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java b/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java
2022-03-01 06:43:03 +01:00
index 483127e9418489ad7ba1fbcb14a045d91c1c3c30..880521f25a6c8483c79043f237866cb7a49c3a54 100644
2021-06-15 04:59:31 +02:00
--- a/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java
+++ b/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java
2022-03-01 06:43:03 +01:00
@@ -192,7 +192,7 @@ public class FallingBlockEntity extends Entity {
2021-06-15 04:59:31 +02:00
2022-03-01 06:43:03 +01:00
// CraftBukkit start
if (CraftEventFactory.callEntityChangeBlockEvent(this, blockposition, this.blockState).isCancelled()) {
- this.discard(); // SPIGOT-6586 called before the event in previous versions
+ this.discard(); // SPIGOT-6586 called before the event in previous versions //TODO test if desync happens on cancel
return;
}
// CraftBukkit end