Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
57dd397155
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: b999860d SPIGOT-2304: Add LootGenerateEvent CraftBukkit Changes:77fd87e4
SPIGOT-2304: Implement LootGenerateEventa1a705ee
SPIGOT-5566: Doused campfires & fires should call EntityChangeBlockEvent41712edd
SPIGOT-5707: PersistentDataHolder not Persistent on API dropped Item
23 Zeilen
881 B
Diff
23 Zeilen
881 B
Diff
From 98908628b9c29971f4722aed224482f50070323d 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 21dbc9b2ab..ef9c4717c3 100644
|
|
--- 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;
|
|
|
|
--
|
|
2.26.2
|
|
|