Remove Audiences from MinecraftServer

This commit is contained in:
themode 2021-03-26 20:33:58 +01:00
parent d55e509944
commit 9789f541cf
1 changed files with 0 additions and 12 deletions

View File

@ -119,7 +119,6 @@ public final class MinecraftServer {
private static BiomeManager biomeManager;
private static AdvancementManager advancementManager;
private static BossBarManager bossBarManager;
private static Audiences audiences;
private static ExtensionManager extensionManager;
@ -186,7 +185,6 @@ public final class MinecraftServer {
biomeManager = new BiomeManager();
advancementManager = new AdvancementManager();
bossBarManager = new BossBarManager();
audiences = new Audiences();
updateManager = new UpdateManager();
@ -444,16 +442,6 @@ public final class MinecraftServer {
return bossBarManager;
}
/**
* Gets the audiences instance.
*
* @return the audiences instance
*/
public static Audiences getAudiences() {
checkInitStatus(audiences);
return audiences;
}
/**
* Gets the object handling the client packets processing.
* <p>