Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

Commit

Permalink
Fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
johnfriedrich committed Nov 30, 2021
1 parent e94af98 commit 2a722b0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Empty file removed .github/workflows/maven.yml
Empty file.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

BungeeCord for 1.7/1.8/1.9/1.10/1.11/1.12/1.13/1.14/1.15/1.16/1.17
BungeeCord for 1.7/1.8/1.9/1.10/1.11/1.12/1.13/1.14/1.15/1.16/1.17/1.18
==========
[![Build Status](https://travis-ci.org/HexagonMC/BungeeCord.svg?branch=master)](https://travis-ci.org/HexagonMC/BungeeCord)

Expand All @@ -11,8 +11,8 @@ This version reimplements Minecraft 1.7.10 and basic 1.7.10 Forge support.
Since release 134+, SpongePls is no longer needed when using Sponge-servers within your network!

IMPORTANT: We WON'T fix any 1.7 bugs.
This fork is designed for keeping your old servers in your network, until your modspacks are available for 1.12.2/1.14.4 or higher.
Most of them are, so get rid of 1.7 fast and move to 1.12.2 or even newer modpacks asap.
This fork is designed for keeping your old servers in your network, until your modpacks are available for more recent mc versions.
Most of them are, so get rid of 1.7 fast and move to newer modpacks asap.

PLEASE: Only use this fork if really needed.(1.7 legacy servers.) If you dont need 1.7 or Sponge support, grab original BungeeCord. Link is above.

Expand Down
4 changes: 2 additions & 2 deletions proxy/src/main/java/net/md_5/bungee/ServerConnector.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
import java.net.InetSocketAddress;
import java.util.Arrays;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import java.util.Locale;
import java.util.Queue;
import java.util.Set;
Expand Down Expand Up @@ -253,7 +253,7 @@ public void handle(Login login) throws Exception
if ( handshakeHandler != null && handshakeHandler.isServerForge() )
{
modLogin = new Login( login.getEntityId(), login.isHardcore(), login.getGameMode(), login.getPreviousGameMode(), login.getWorldNames(), login.getDimensions(), login.getDimension(), login.getWorldName(), login.getSeed(), login.getDifficulty(),
(byte) user.getPendingConnection().getListener().getTabListSize(), login.getLevelType(), login.getViewDistance(), login.isReducedDebugInfo(), login.isNormalRespawn(), login.isDebug(), login.isFlat() );
(byte) user.getPendingConnection().getListener().getTabListSize(), login.getLevelType(), login.getViewDistance(), login.getSimulationDistance(), login.isReducedDebugInfo(), login.isNormalRespawn(), login.isDebug(), login.isFlat() );
} else
{
modLogin = new Login( login.getEntityId(), login.isHardcore(), login.getGameMode(), login.getPreviousGameMode(), login.getWorldNames(), login.getDimensions(), login.getDimension(), login.getWorldName(), login.getSeed(), login.getDifficulty(),
Expand Down

0 comments on commit 2a722b0

Please sign in to comment.