2020-07-17 18:05:50 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-06-27 20:02:39 +02:00
|
|
|
From: tr7zw <tr7zw@live.de>
|
2020-08-03 18:48:42 +02:00
|
|
|
Date: Fri, 31 Jul 2020 21:48:14 -0500
|
2020-06-27 20:02:39 +02:00
|
|
|
Subject: [PATCH] Item stuck sleep config
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityItem.java b/src/main/java/net/minecraft/server/EntityItem.java
|
2020-10-02 13:23:32 +02:00
|
|
|
index bc4f84c8857aab45a69c915104de8d70b758698c..6c37b8981302783023762d4708fd3fbc51a5ef4a 100644
|
2020-06-27 20:02:39 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityItem.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityItem.java
|
2020-08-13 17:53:32 +02:00
|
|
|
@@ -82,7 +82,7 @@ public class EntityItem extends Entity {
|
2020-06-27 20:02:39 +02:00
|
|
|
|
|
|
|
if (this.world.isClientSide) {
|
|
|
|
this.noclip = false;
|
|
|
|
- } else {
|
2020-09-01 08:38:17 +02:00
|
|
|
+ } else if (!this.onGround || this.noclip || this.ticksLived % net.yatopia.server.YatopiaConfig.itemStuckSleepTicks == 0) { // Yatopia
|
2020-06-27 20:02:39 +02:00
|
|
|
this.noclip = !this.world.getCubes(this);
|
|
|
|
if (this.noclip) {
|
2020-08-13 17:53:32 +02:00
|
|
|
this.l(this.locX(), (this.getBoundingBox().minY + this.getBoundingBox().maxY) / 2.0D, this.locZ());
|
2020-09-01 08:38:17 +02:00
|
|
|
diff --git a/src/main/java/net/yatopia/server/YatopiaConfig.java b/src/main/java/net/yatopia/server/YatopiaConfig.java
|
2020-09-15 07:43:13 +02:00
|
|
|
index d69001b126046070abfa96dd3d1e6f95a24af536..9357d12cd623cd3ea92e39bd9d70ee89330ad1b3 100644
|
2020-09-01 08:38:17 +02:00
|
|
|
--- a/src/main/java/net/yatopia/server/YatopiaConfig.java
|
|
|
|
+++ b/src/main/java/net/yatopia/server/YatopiaConfig.java
|
2020-09-15 07:43:13 +02:00
|
|
|
@@ -195,4 +195,9 @@ public class YatopiaConfig {
|
2020-09-01 08:38:17 +02:00
|
|
|
private static void pistonPushLimit() {
|
|
|
|
pistonPushLimit = getInt("settings.pistonPushLimit", 12);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public static int itemStuckSleepTicks = 1;
|
|
|
|
+ private static void itemStuckSleepTicks() {
|
|
|
|
+ itemStuckSleepTicks = getInt("settings.itemStuckSleepTicks", 1);
|
|
|
|
+ }
|
|
|
|
}
|