2022-12-07 17:30:18 +01:00
|
|
|
From bb5732db8c6fa66d335f6d46b3c07f9444a613c7 Mon Sep 17 00:00:00 2001
|
2020-06-20 19:22:01 +02:00
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Sat, 20 Jun 2020 18:21:17 +0100
|
|
|
|
Subject: [PATCH] Remove version from brand info
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java b/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
|
2022-12-07 17:30:18 +01:00
|
|
|
index 0c9cfb02..89b98b36 100644
|
2020-06-20 19:22:01 +02:00
|
|
|
--- a/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
|
|
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
|
2022-12-07 17:30:18 +01:00
|
|
|
@@ -316,7 +316,7 @@ public class DownstreamBridge extends PacketHandler
|
2020-06-20 19:22:01 +02:00
|
|
|
Preconditions.checkState( !serverBrand.contains( bungee.getName() ), "Cannot connect proxy to itself!" );
|
|
|
|
|
|
|
|
brand = ByteBufAllocator.DEFAULT.heapBuffer();
|
|
|
|
- DefinedPacket.writeString( bungee.getName() + " (" + bungee.getVersion() + ")" + " <- " + serverBrand, brand );
|
|
|
|
+ DefinedPacket.writeString( bungee.getName() + " <- " + serverBrand, brand ); // Waterfall
|
|
|
|
pluginMessage.setData( brand );
|
|
|
|
brand.release();
|
|
|
|
// changes in the packet are ignored so we need to send it manually
|
|
|
|
--
|
2022-12-07 17:30:18 +01:00
|
|
|
2.38.1
|
2020-06-20 19:22:01 +02:00
|
|
|
|