Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
c5a10665b8
Spigot still maintains some partial implementation of "tick skipping", a practice in which the MinecraftServer.currentTick field is updated not by an increment of one per actual tick, but instead set to System.currentTimeMillis() / 50. This behaviour means that the tracked tick may "skip" a tick value in case a previous tick took more than the expected 50ms. To compensate for this in important paths, spigot/craftbukkit implements "wall-time". Instead of incrementing/decrementing ticks on block entities/entities by one for each call to their tick() method, they instead increment/decrement important values, like an ItemEntity's age or pickupDelay, by the difference of `currentTick - lastTick`, where `lastTick` is the value of `currentTick` during the last tick() call. These "fixes" however do not play nicely with minecraft's simulation distance as entities/block entities implementing the above behaviour would "catch up" their values when moving from a non-ticking chunk to a ticking one as their `lastTick` value remains stuck on the last tick in a ticking chunk and hence lead to a large "catch up" once ticked again. Paper completely removes the "tick skipping" behaviour (See patch "Further-improve-server-tick-loop"), making the above precautions completely unnecessary, which also rids paper of the previous described incompatibility with non-ticking chunks.
41 Zeilen
1.3 KiB
Diff
41 Zeilen
1.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: EpicKnarvik97 <kristian.knarvik@knett.no>
|
|
Date: Sat, 5 Mar 2022 20:58:46 +0100
|
|
Subject: [PATCH] Expose furnace minecart push values
|
|
|
|
Adds methods for getting and setting a furnace minecart's push values
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftMinecartFurnace.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftMinecartFurnace.java
|
|
index 53042b75b45093535d6572239b34c3ff9a72f648..1b41026ab638bb2764b19429706eb0aded5aad12 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftMinecartFurnace.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftMinecartFurnace.java
|
|
@@ -27,6 +27,28 @@ public class CraftMinecartFurnace extends CraftMinecart implements PoweredMineca
|
|
this.getHandle().fuel = fuel;
|
|
}
|
|
|
|
+ // Paper start
|
|
+ @Override
|
|
+ public double getPushX() {
|
|
+ return getHandle().xPush;
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public double getPushZ() {
|
|
+ return getHandle().zPush;
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public void setPushX(double xPush) {
|
|
+ getHandle().xPush = xPush;
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public void setPushZ(double zPush) {
|
|
+ getHandle().zPush = zPush;
|
|
+ }
|
|
+ // Paper end
|
|
+
|
|
@Override
|
|
public String toString() {
|
|
return "CraftMinecartFurnace";
|