mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 07:48:53 +01:00
4104545b11
"It was from a different time before books were as jank as they are now. As time has gone on they've only proven to be worse and worse."
31 lines
1.9 KiB
Diff
31 lines
1.9 KiB
Diff
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
|
|
index 5d89acffe7df54b79733bebba342ea694339ac4b..970c53ff78ed82bb7ec1f981d0fd5cbd72de7bf8 100644
|
|
--- a/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java
|
|
+++ b/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java
|
|
@@ -119,8 +119,18 @@ public class FallingBlockEntity extends Entity {
|
|
|
|
if (this.time++ == 0) {
|
|
blockposition = this.blockPosition();
|
|
- if (this.level.getBlockState(blockposition).is(block) && !CraftEventFactory.callEntityChangeBlockEvent(this, blockposition, Blocks.AIR.defaultBlockState()).isCancelled()) {
|
|
- this.level.removeBlock(blockposition, false);
|
|
+ // Paper start - fix cancelling block falling causing client desync
|
|
+ if (this.level.getBlockState(blockposition).is(block)) {
|
|
+ if (CraftEventFactory.callEntityChangeBlockEvent(this, blockposition, Blocks.AIR.defaultBlockState()).isCancelled()) {
|
|
+ if (this.level.getBlockState(blockposition).is(block)) { //if listener didn't update the block
|
|
+ ((ServerLevel) level).getChunkSource().blockChanged(blockposition);
|
|
+ }
|
|
+ this.discard();
|
|
+ return;
|
|
+ } else {
|
|
+ this.level.setAir(blockposition, false);
|
|
+ }
|
|
+ // Paper end - fix cancelling block falling causing client desync
|
|
} else if (!this.level.isClientSide) {
|
|
this.discard();
|
|
return;
|