2020-05-06 11:22:03 +02:00
|
|
|
From 728b0a752597f2df4b25e41c18b95acdf661e782 Mon Sep 17 00:00:00 2001
|
2019-08-02 19:31:24 +02:00
|
|
|
From: kickash32 <kickash32@gmail.com>
|
|
|
|
Date: Tue, 30 Jul 2019 03:17:16 +0500
|
|
|
|
Subject: [PATCH] offset item frame ticking
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityHanging.java b/src/main/java/net/minecraft/server/EntityHanging.java
|
2020-05-06 11:22:03 +02:00
|
|
|
index 21dbc9b2ab7..ef9c4717c31 100644
|
2019-08-02 19:31:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityHanging.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityHanging.java
|
|
|
|
@@ -15,7 +15,7 @@ public abstract class EntityHanging extends Entity {
|
|
|
|
protected static final Predicate<Entity> b = (entity) -> {
|
|
|
|
return entity instanceof EntityHanging;
|
|
|
|
};
|
|
|
|
- private int e;
|
|
|
|
+ private int e; { this.e = this.getId() % this.world.spigotConfig.hangingTickFrequency; } // Paper
|
|
|
|
public BlockPosition blockPosition;
|
|
|
|
protected EnumDirection direction;
|
|
|
|
|
|
|
|
--
|
2020-05-02 00:03:47 +02:00
|
|
|
2.26.2
|
2019-08-02 19:31:24 +02:00
|
|
|
|