mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-16 14:33:09 +01:00
Offset Itemframe ticking (#2385)
This commit is contained in:
parent
55e2ef9d9c
commit
e7f327502f
1 changed files with 20 additions and 0 deletions
20
Spigot-Server-Patches/offset-item-frame-ticking.patch
Normal file
20
Spigot-Server-Patches/offset-item-frame-ticking.patch
Normal file
|
@ -0,0 +1,20 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
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
|
||||
index 3b282a18a..636a0bc4e 100644
|
||||
--- a/src/main/java/net/minecraft/server/EntityHanging.java
|
||||
+++ b/src/main/java/net/minecraft/server/EntityHanging.java
|
||||
@@ -0,0 +0,0 @@ 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;
|
||||
|
||||
--
|
Loading…
Reference in a new issue