mirror of
https://github.com/ME1312/SubServers-2.git
synced 2024-11-21 17:56:16 +01:00
Mirror the listeners field
This commit is contained in:
parent
d8463e25c5
commit
cf07e86a09
@ -28,7 +28,7 @@
|
||||
<dependency>
|
||||
<groupId>net.ME1312.Galaxi</groupId>
|
||||
<artifactId>GalaxiBase</artifactId>
|
||||
<version>22w24a</version>
|
||||
<version>22w50c</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
@ -1,9 +1,12 @@
|
||||
package net.ME1312.SubServers.Bungee;
|
||||
|
||||
import net.ME1312.Galaxi.Library.Util;
|
||||
|
||||
import io.netty.channel.Channel;
|
||||
import net.md_5.bungee.BungeeCord;
|
||||
import net.md_5.bungee.api.config.ServerInfo;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Collection;
|
||||
import java.util.Map;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
@ -13,8 +16,10 @@ import java.util.function.Supplier;
|
||||
public abstract class BungeeCommon extends BungeeCord {
|
||||
private static BungeeCommon instance;
|
||||
final Supplier<BungeeAPI> api;
|
||||
protected final Collection<Channel> listeners;
|
||||
|
||||
protected BungeeCommon(Supplier<BungeeAPI> api) throws IOException {
|
||||
protected BungeeCommon(Supplier<BungeeAPI> api) throws Exception {
|
||||
listeners= Util.reflect(BungeeCord.class.getDeclaredField("listeners"), this);
|
||||
this.api = api;
|
||||
instance = this;
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ import net.ME1312.SubServers.Bungee.Network.SubProtocol;
|
||||
import com.dosse.upnp.UPnP;
|
||||
import com.google.common.collect.Range;
|
||||
import com.google.gson.Gson;
|
||||
import io.netty.channel.Channel;
|
||||
import net.md_5.bungee.BungeeServerInfo;
|
||||
import net.md_5.bungee.UserConnection;
|
||||
import net.md_5.bungee.api.ChatColor;
|
||||
@ -92,6 +93,7 @@ public final class SubProxy extends BungeeCommon implements Listener {
|
||||
public SubProtocol subprotocol;
|
||||
public SubDataServer subdata = null;
|
||||
public SubServer sudo = null;
|
||||
public final Collection<Channel> listeners = super.listeners;
|
||||
public static final Version version = Version.fromString("2.19a");
|
||||
|
||||
public final Proxy mProxy;
|
||||
@ -825,7 +827,7 @@ public final class SubProxy extends BungeeCommon implements Listener {
|
||||
}
|
||||
|
||||
private boolean shutdown = false;
|
||||
protected void shutdown() {
|
||||
void shutdown() {
|
||||
if (ready) {
|
||||
legServers.clear();
|
||||
legServers.putAll(getServersCopy());
|
||||
@ -833,7 +835,7 @@ public final class SubProxy extends BungeeCommon implements Listener {
|
||||
|
||||
Logger.get("SubServers").info("Stopping hosted servers");
|
||||
String[] hosts = this.hosts.keySet().toArray(new String[0]);
|
||||
if (shutdown || !super.isRunning) running = false;
|
||||
if (shutdown) running = false;
|
||||
for (String host : hosts) {
|
||||
api.forceRemoveHost(host);
|
||||
}
|
||||
|
@ -18,7 +18,7 @@
|
||||
<dependency>
|
||||
<groupId>net.ME1312.Galaxi</groupId>
|
||||
<artifactId>GalaxiBase</artifactId>
|
||||
<version>22w24a</version>
|
||||
<version>22w50c</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -30,13 +30,13 @@
|
||||
<dependency>
|
||||
<groupId>net.ME1312.Galaxi</groupId>
|
||||
<artifactId>GalaxiEngine</artifactId>
|
||||
<version>22w24a</version>
|
||||
<version>22w50c</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.ME1312.Galaxi</groupId>
|
||||
<artifactId>GalaxiUI</artifactId>
|
||||
<version>22w24a</version>
|
||||
<version>22w50c</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -32,6 +32,7 @@ import net.ME1312.SubServers.Sync.Server.SubServerImpl;
|
||||
|
||||
import com.dosse.upnp.UPnP;
|
||||
import com.google.gson.Gson;
|
||||
import io.netty.channel.Channel;
|
||||
import net.md_5.bungee.BungeeServerInfo;
|
||||
import net.md_5.bungee.UserConnection;
|
||||
import net.md_5.bungee.api.ProxyServer;
|
||||
@ -74,6 +75,7 @@ public final class ExProxy extends BungeeCommon implements Listener {
|
||||
public final Plugin plugin;
|
||||
public final SubAPI api = new SubAPI(this);
|
||||
public SubProtocol subprotocol;
|
||||
public final Collection<Channel> listeners = super.listeners;
|
||||
public static final Version version = Version.fromString("2.19a");
|
||||
|
||||
public final boolean isPatched;
|
||||
|
Loading…
Reference in New Issue
Block a user