Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-12-26 16:12:46 +01:00
Close skin uploader on shutdown when using Floodgate
Dieser Commit ist enthalten in:
Ursprung
a24d2a957c
Commit
13f8b54d77
@ -440,6 +440,9 @@ public class GeyserConnector {
|
|||||||
if (timeSyncer != null) {
|
if (timeSyncer != null) {
|
||||||
timeSyncer.shutdown();
|
timeSyncer.shutdown();
|
||||||
}
|
}
|
||||||
|
if (skinUploader != null) {
|
||||||
|
skinUploader.close();
|
||||||
|
}
|
||||||
newsHandler.shutdown();
|
newsHandler.shutdown();
|
||||||
players.clear();
|
players.clear();
|
||||||
defaultAuthType = null;
|
defaultAuthType = null;
|
||||||
|
@ -229,7 +229,7 @@ public final class FloodgateSkinUploader {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void stop() {
|
public void close() {
|
||||||
client.close();
|
client.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren