mirror of
https://github.com/PaperMC/Waterfall.git
synced 2025-01-03 22:47:38 +01:00
337ca7f887
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing BungeeCord Changes: 70038c91 Revert "#2714: Remove unnecessary throws in ServerConnector" 39ef20b2 #2716: Don't attempt to send kick packet during handshake phase 74a6aa32 #2714: Remove unnecessary throws in ServerConnector c7984070 Misc dependency update
36 lines
1.6 KiB
Diff
36 lines
1.6 KiB
Diff
From e46ca84dfcda26de04ccdd61a0707452ab704768 Mon Sep 17 00:00:00 2001
|
|
From: Jamie Mansfield <dev@jamierocks.uk>
|
|
Date: Mon, 28 May 2018 21:43:55 +0100
|
|
Subject: [PATCH] Forge is a first class citizen
|
|
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/BungeeCord.java b/proxy/src/main/java/net/md_5/bungee/BungeeCord.java
|
|
index c4f45964..6ae18f2c 100644
|
|
--- a/proxy/src/main/java/net/md_5/bungee/BungeeCord.java
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/BungeeCord.java
|
|
@@ -274,8 +274,6 @@ public class BungeeCord extends ProxyServer
|
|
registerChannel( ForgeConstants.FML_TAG );
|
|
registerChannel( ForgeConstants.FML_HANDSHAKE_TAG );
|
|
registerChannel( ForgeConstants.FORGE_REGISTER );
|
|
-
|
|
- getLogger().warning( "MinecraftForge support is currently unmaintained and may have unresolved issues. Please use at your own risk." );
|
|
}
|
|
|
|
isRunning = true;
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/conf/Configuration.java b/proxy/src/main/java/net/md_5/bungee/conf/Configuration.java
|
|
index 2ec6c23c..5841cf63 100644
|
|
--- a/proxy/src/main/java/net/md_5/bungee/conf/Configuration.java
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/conf/Configuration.java
|
|
@@ -66,7 +66,7 @@ public abstract class Configuration implements ProxyConfig
|
|
private Favicon favicon;
|
|
private int compressionThreshold = 256;
|
|
private boolean preventProxyConnections;
|
|
- private boolean forgeSupport;
|
|
+ private boolean forgeSupport = true; // Waterfall: default to enabled
|
|
|
|
@Synchronized("serversLock") // Waterfall
|
|
public void load()
|
|
--
|
|
2.24.0
|
|
|