geforkt von Mirrors/Paper
70ce6ce831
This makes it easier for downstream projects (forks) to replace the version fetching system with their own. It is as simple as implementing an interface and overriding the default implementation of org.bukkit.UnsafeValues#getVersionFetcher() It also makes it easier for us to organize things like the version history feature. Lastly I have updated the paper implementation to check against the site API rather than against jenkins.
23 Zeilen
877 B
Diff
23 Zeilen
877 B
Diff
From 03bf5c7b4e5227f828b28a61cc0013a9f0809db7 Mon Sep 17 00:00:00 2001
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
Date: Fri, 10 May 2019 18:38:19 +0100
|
|
Subject: [PATCH] Fix CB call to changed postToMainThread method
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
index 5b4576388..e517e9f9f 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -282,7 +282,7 @@ public class PlayerConnection implements PacketListenerPlayIn {
|
|
|
|
this.networkManager.getClass();
|
|
// CraftBukkit - Don't wait
|
|
- minecraftserver.postToMainThread(networkmanager::handleDisconnection);
|
|
+ minecraftserver.scheduleOnMain(networkmanager::handleDisconnection); // Paper
|
|
}
|
|
|
|
@Override
|
|
--
|
|
2.21.0
|
|
|