mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-21 18:15:54 +01:00
8c5b837e05
Firstly, the old methods all routed to the CompletableFuture method. However, the CF method could not guarantee that if the caller was off-main that the future would be "completed" on-main. Since the callback methods used the CF one, this meant that the callback methods did not guarantee that the callbacks were to be called on the main thread. Now, all methods route to getChunkAtAsync(x, z, gen, urgent, cb) so that the methods with the callback are guaranteed to invoke the callback on the main thread. The CF behavior remains unchanged; it may still appear to complete on main if invoked off-main. Secondly, remove the scheduleOnMain invocation in the async chunk completion. This unnecessarily delays the callback by 1 tick. Thirdly, add getChunksAtAsync(minX, minZ, maxX, maxZ, ...) which will load chunks within an area. This method is provided as a helper as keeping all chunks loaded within an area can be complicated to implement for plugins (due to the lacking ticket API), and is already implemented internally anyways. Fourthly, remove the ticket addition that occured with getChunkAt and getChunkAtAsync. The ticket addition may delay the unloading of the chunk unnecessarily. It also fixes a very rare timing bug where the future/callback would be completed after the chunk unloads.
43 lines
1.5 KiB
Diff
43 lines
1.5 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..1be1f6d23f2224d4d8720d40f2e530736b1bae81 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftMinecartFurnace.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftMinecartFurnace.java
|
|
@@ -27,6 +27,30 @@ public class CraftMinecartFurnace extends CraftMinecart implements PoweredMineca
|
|
this.getHandle().fuel = fuel;
|
|
}
|
|
|
|
+ // Paper start
|
|
+ @Override
|
|
+ public double getPushX() {
|
|
+ return getHandle().push.x;
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public double getPushZ() {
|
|
+ return getHandle().push.z;
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public void setPushX(double xPush) {
|
|
+ final net.minecraft.world.phys.Vec3 push = getHandle().push;
|
|
+ getHandle().push = new net.minecraft.world.phys.Vec3(xPush, push.y, push.z);
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public void setPushZ(double zPush) {
|
|
+ final net.minecraft.world.phys.Vec3 push = getHandle().push;
|
|
+ getHandle().push = new net.minecraft.world.phys.Vec3(push.x, push.y, zPush);
|
|
+ }
|
|
+ // Paper end
|
|
+
|
|
@Override
|
|
public String toString() {
|
|
return "CraftMinecartFurnace";
|