Skip to content

Commit c43af40

Browse files
committed
Updated Upstream (BungeeCord)
Upstream has released updates that appear 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: 8cb49bc1 SPIGOT-8061: Add property to configure central library URL 5b05934f Minecraft 1.21.6 support
1 parent 1278bf9 commit c43af40

File tree

3 files changed

+11
-20
lines changed

3 files changed

+11
-20
lines changed

BungeeCord-Patches/0007-Fixup-ProtocolConstants.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
From 8ece8818578766bfa71eb5cd2e4527db3deb7c22 Mon Sep 17 00:00:00 2001
1+
From 03e73e997dc06271e1afffa8b989125b275ee45f Mon Sep 17 00:00:00 2001
22
From: Troy Frew <[email protected]>
33
Date: Tue, 15 Nov 2016 09:07:51 -0500
44
Subject: [PATCH] Fixup ProtocolConstants
55

66

77
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java b/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
8-
index b1b532c9..8d65ca52 100644
8+
index 4e40c699..1c1a09bc 100644
99
--- a/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
1010
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
11-
@@ -128,6 +128,16 @@ public class ProtocolConstants
11+
@@ -129,6 +129,16 @@ public class ProtocolConstants
1212
SUPPORTED_VERSION_IDS = supportedVersionIds.build();
1313
}
1414

@@ -26,5 +26,5 @@ index b1b532c9..8d65ca52 100644
2626
{
2727

2828
--
29-
2.49.0
29+
2.50.0
3030

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,22 @@
1-
From 70041a58b886a27ed67c4318b8ce8e2445908780 Mon Sep 17 00:00:00 2001
1+
From 44c080b7d0505a30ea7e7f501fe1298b6a89e2db Mon Sep 17 00:00:00 2001
22
From: Shane Freeder <[email protected]>
33
Date: Tue, 17 Jun 2025 15:04:22 +0100
44
Subject: [PATCH] Temp release support
55

66

77
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java b/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
8-
index 8760f52d..edf78be4 100644
8+
index 1c1a09bc..9c824dcf 100644
99
--- a/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
1010
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
11-
@@ -50,7 +50,7 @@ public class ProtocolConstants
12-
public static final int MINECRAFT_1_21_2 = 768;
13-
public static final int MINECRAFT_1_21_4 = 769;
14-
public static final int MINECRAFT_1_21_5 = 770;
15-
- public static final int MINECRAFT_1_21_6 = 1073742078;
16-
+ public static final int MINECRAFT_1_21_6 = 771;
17-
public static final List<String> SUPPORTED_VERSIONS;
18-
public static final List<Integer> SUPPORTED_VERSION_IDS;
19-
20-
@@ -118,7 +118,7 @@ public class ProtocolConstants
21-
ProtocolConstants.MINECRAFT_1_21_5
11+
@@ -119,7 +119,7 @@ public class ProtocolConstants
12+
ProtocolConstants.MINECRAFT_1_21_6
2213
);
2314

2415
- if ( SNAPSHOT_SUPPORT )
2516
+ if ( true || SNAPSHOT_SUPPORT )
2617
{
2718
// supportedVersions.add( "1.21.x" );
28-
supportedVersionIds.add( ProtocolConstants.MINECRAFT_1_21_6 );
19+
// supportedVersionIds.add( ProtocolConstants.MINECRAFT_1_21_6 );
2920
--
30-
2.49.0
21+
2.50.0
3122

0 commit comments

Comments
 (0)