aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0438-Fix-sand-duping.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0438-Fix-sand-duping.patch')
-rw-r--r--patches/server/0438-Fix-sand-duping.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/patches/server/0438-Fix-sand-duping.patch b/patches/server/0438-Fix-sand-duping.patch
index 59c437cfea..c68919d4ee 100644
--- a/patches/server/0438-Fix-sand-duping.patch
+++ b/patches/server/0438-Fix-sand-duping.patch
@@ -7,10 +7,10 @@ If the falling block dies during teleportation (entity#move), then we need
to detect that by placing a check after the move.
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 2723816204ee61ea3fda9279369df030b8d70a13..c267bc75a5a2a410d941accbe8c41e3422a634a5 100644
+index f12eafb49c2536f91f4716188c931ad97264c113..e234373432f34f237f884f7054c0d80829228522 100644
--- a/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java
+++ b/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java
-@@ -119,6 +119,11 @@ public class FallingBlockEntity extends Entity {
+@@ -120,6 +120,11 @@ public class FallingBlockEntity extends Entity {
@Override
public void tick() {
@@ -22,7 +22,7 @@ index 2723816204ee61ea3fda9279369df030b8d70a13..c267bc75a5a2a410d941accbe8c41e34
if (this.blockState.isAir()) {
this.discard();
} else {
-@@ -131,6 +136,12 @@ public class FallingBlockEntity extends Entity {
+@@ -132,6 +137,12 @@ public class FallingBlockEntity extends Entity {
this.move(MoverType.SELF, this.getDeltaMovement());