Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/SpigotMC/BungeeCord
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 22, 2024
2 parents e3df6e3 + 4886c4b commit f188eda
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class ProtocolConstants
public static final int MINECRAFT_1_20_3 = 765;
public static final int MINECRAFT_1_20_5 = 766;
public static final int MINECRAFT_1_21 = 767;
public static final int MINECRAFT_1_21_2 = 1073742042;
public static final int MINECRAFT_1_21_2 = 768;
public static final List<String> SUPPORTED_VERSIONS;
public static final List<Integer> SUPPORTED_VERSION_IDS;

Expand Down Expand Up @@ -109,13 +109,14 @@ public class ProtocolConstants
ProtocolConstants.MINECRAFT_1_20_2,
ProtocolConstants.MINECRAFT_1_20_3,
ProtocolConstants.MINECRAFT_1_20_5,
ProtocolConstants.MINECRAFT_1_21
ProtocolConstants.MINECRAFT_1_21,
ProtocolConstants.MINECRAFT_1_21_2
);

if ( SNAPSHOT_SUPPORT )
{
// supportedVersions.add( "1.21.x" );
supportedVersionIds.add( ProtocolConstants.MINECRAFT_1_21_2 );
// supportedVersionIds.add( ProtocolConstants.MINECRAFT_1_21_2 );
}

SUPPORTED_VERSIONS = supportedVersions.build();
Expand Down

0 comments on commit f188eda

Please sign in to comment.