动态更改 BungeeCord 服务器配置
Dynamically change BungeeCord server configuration
我正在设置一个新的 Minecraft 服务器,我想使用我自己的插件更改我的子服务器。
这行不通
getProxy().getServers().put("game25568", new ServerInfo());
如何添加具有自定义地址和 motd 的服务器?
我想这就是你想要的:)
https://www.spigotmc.org/threads/registering-server.51340/#post-576590
By Spawl - on SpigotMC
ServerInfo info = ProxyServer.getInstance().constructServerInfo(id, InetSocketAddress.createUnresolved(ip, port), "motd here", restricted);
ProxyServer.getInstance().getServers().put(id, info);
我正在设置一个新的 Minecraft 服务器,我想使用我自己的插件更改我的子服务器。
这行不通
getProxy().getServers().put("game25568", new ServerInfo());
如何添加具有自定义地址和 motd 的服务器?
我想这就是你想要的:)
https://www.spigotmc.org/threads/registering-server.51340/#post-576590
By Spawl - on SpigotMC
ServerInfo info = ProxyServer.getInstance().constructServerInfo(id, InetSocketAddress.createUnresolved(ip, port), "motd here", restricted);
ProxyServer.getInstance().getServers().put(id, info);