mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-18 00:47:42 +01:00
20 lines
1.1 KiB
Diff
20 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: BillyGalbreath <blake.galbreath@gmail.com>
|
|
Date: Thu, 7 Jan 2021 07:51:25 -0600
|
|
Subject: [PATCH] Add MC-4 fix back
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityItem.java b/src/main/java/net/minecraft/server/EntityItem.java
|
|
index c25dce9a75b0e79f9b59f31892d863f46e2565e9..14aa48759c78cd61574a25d7377d8e35d8559599 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityItem.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityItem.java
|
|
@@ -543,7 +543,7 @@ public class EntityItem extends Entity {
|
|
|
|
// Paper start - fix MC-4
|
|
public void setPositionRaw(double x, double y, double z) {
|
|
- if (false && com.destroystokyo.paper.PaperConfig.fixEntityPositionDesync) { // Tuinity - revert
|
|
+ if (com.destroystokyo.paper.PaperConfig.fixEntityPositionDesync) { // Tuinity - revert // Purpur - no
|
|
// encode/decode from PacketPlayOutEntity
|
|
x = MathHelper.floorLong(x * 4096.0D) * (1 / 4096.0D);
|
|
y = MathHelper.floorLong(y * 4096.0D) * (1 / 4096.0D);
|