2018-09-16 18:06:25 +02:00
|
|
|
From 8e7821954fb8a610f11eaf9c80f67d318ab4081e Mon Sep 17 00:00:00 2001
|
2016-07-01 07:28:19 +02:00
|
|
|
From: Troy Frew <fuzzy_bot@arenaga.me>
|
|
|
|
Date: Wed, 29 Jun 2016 13:56:57 -0500
|
|
|
|
Subject: [PATCH] Configurable server version in ping response
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/api/src/main/java/net/md_5/bungee/api/ProxyConfig.java b/api/src/main/java/net/md_5/bungee/api/ProxyConfig.java
|
2018-07-22 18:40:31 +02:00
|
|
|
index dcd46f4a..d3411929 100644
|
2016-07-01 07:28:19 +02:00
|
|
|
--- a/api/src/main/java/net/md_5/bungee/api/ProxyConfig.java
|
|
|
|
+++ b/api/src/main/java/net/md_5/bungee/api/ProxyConfig.java
|
2018-07-22 18:40:31 +02:00
|
|
|
@@ -163,6 +163,11 @@ public interface ProxyConfig
|
2016-07-01 07:28:19 +02:00
|
|
|
*/
|
|
|
|
boolean isLogServerListPing();
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * The supported versions
|
|
|
|
+ */
|
|
|
|
+ String getGameVersion();
|
|
|
|
+
|
|
|
|
// Throttling options
|
|
|
|
|
|
|
|
/**
|
2016-11-26 21:39:19 +01:00
|
|
|
diff --git a/proxy/src/main/java/io/github/waterfallmc/waterfall/conf/WaterfallConfiguration.java b/proxy/src/main/java/io/github/waterfallmc/waterfall/conf/WaterfallConfiguration.java
|
2018-07-22 18:40:31 +02:00
|
|
|
index 93f47511..15274156 100644
|
2016-11-26 21:39:19 +01:00
|
|
|
--- a/proxy/src/main/java/io/github/waterfallmc/waterfall/conf/WaterfallConfiguration.java
|
|
|
|
+++ b/proxy/src/main/java/io/github/waterfallmc/waterfall/conf/WaterfallConfiguration.java
|
2018-07-22 18:40:31 +02:00
|
|
|
@@ -1,7 +1,9 @@
|
|
|
|
package io.github.waterfallmc.waterfall.conf;
|
2016-07-01 07:28:19 +02:00
|
|
|
|
|
|
|
+import com.google.common.base.Joiner;
|
|
|
|
import net.md_5.bungee.conf.Configuration;
|
|
|
|
import net.md_5.bungee.conf.YamlConfig;
|
|
|
|
+import net.md_5.bungee.protocol.ProtocolConstants;
|
|
|
|
|
2018-07-22 18:40:31 +02:00
|
|
|
import java.io.File;
|
2016-07-01 07:28:19 +02:00
|
|
|
|
2018-07-22 18:40:31 +02:00
|
|
|
@@ -14,6 +16,12 @@ public class WaterfallConfiguration extends Configuration {
|
2016-07-01 07:28:19 +02:00
|
|
|
*/
|
|
|
|
private boolean logServerListPing = false;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * The supported versions displayed to the client
|
2018-07-22 18:40:31 +02:00
|
|
|
+ * <p>Default is a comma separated list of supported versions. For example 1.8.x, 1.9.x, 1.10.x</p>
|
2016-07-01 07:28:19 +02:00
|
|
|
+ */
|
|
|
|
+ private String gameVersion;
|
|
|
|
+
|
|
|
|
/*
|
|
|
|
* Throttling options
|
|
|
|
* Helps prevent players from overloading the servers behind us
|
2018-07-22 18:40:31 +02:00
|
|
|
@@ -33,6 +41,7 @@ public class WaterfallConfiguration extends Configuration {
|
|
|
|
YamlConfig config = new YamlConfig(new File("waterfall.yml"));
|
|
|
|
config.load(false); // Load, but no permissions
|
2016-07-01 07:28:19 +02:00
|
|
|
logServerListPing = config.getBoolean( "log_server_list_ping", logServerListPing );
|
2018-07-22 18:40:31 +02:00
|
|
|
+ gameVersion = config.getString("game_version", "").isEmpty() ? Joiner.on(", ").join(ProtocolConstants.SUPPORTED_VERSIONS) : config.getString("game_version", "");
|
2016-07-01 07:28:19 +02:00
|
|
|
// Throttling options
|
|
|
|
tabThrottle = config.getInt("throttling.tab_complete", tabThrottle);
|
2018-07-22 18:40:31 +02:00
|
|
|
}
|
|
|
|
@@ -42,6 +51,11 @@ public class WaterfallConfiguration extends Configuration {
|
|
|
|
return logServerListPing;
|
2016-07-01 07:28:19 +02:00
|
|
|
}
|
|
|
|
|
2018-07-22 18:40:31 +02:00
|
|
|
+ @Override
|
|
|
|
+ public String getGameVersion() {
|
|
|
|
+ return gameVersion;
|
|
|
|
+ }
|
|
|
|
+
|
2016-11-26 21:39:19 +01:00
|
|
|
@Override
|
2018-07-22 18:40:31 +02:00
|
|
|
public int getTabThrottle() {
|
|
|
|
return tabThrottle;
|
2016-11-26 21:39:19 +01:00
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/BungeeCord.java b/proxy/src/main/java/net/md_5/bungee/BungeeCord.java
|
2018-09-16 18:06:25 +02:00
|
|
|
index 07eeea16..595b7375 100644
|
2016-11-26 21:39:19 +01:00
|
|
|
--- a/proxy/src/main/java/net/md_5/bungee/BungeeCord.java
|
|
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/BungeeCord.java
|
2018-09-16 18:06:25 +02:00
|
|
|
@@ -646,7 +646,7 @@ public class BungeeCord extends ProxyServer
|
2016-11-26 21:39:19 +01:00
|
|
|
@Override
|
|
|
|
public String getGameVersion()
|
|
|
|
{
|
2017-06-08 17:57:34 +02:00
|
|
|
- return ProtocolConstants.SUPPORTED_VERSIONS.get( 0 ) + "-" + ProtocolConstants.SUPPORTED_VERSIONS.get( ProtocolConstants.SUPPORTED_VERSIONS.size() - 1 );
|
2016-11-26 21:39:19 +01:00
|
|
|
+ return getConfig().getGameVersion(); // Waterfall
|
|
|
|
}
|
|
|
|
|
2016-07-01 07:28:19 +02:00
|
|
|
@Override
|
|
|
|
--
|
2018-09-16 18:06:25 +02:00
|
|
|
2.19.0
|
2016-07-01 07:28:19 +02:00
|
|
|
|