#3058: Remove world limit
This commit is contained in:
parent
a4e5f5005b
commit
8d783aa172
@ -1,6 +1,5 @@
|
|||||||
package net.md_5.bungee.protocol.packet;
|
package net.md_5.bungee.protocol.packet;
|
||||||
|
|
||||||
import com.google.common.base.Preconditions;
|
|
||||||
import io.netty.buffer.ByteBuf;
|
import io.netty.buffer.ByteBuf;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
@ -53,8 +52,6 @@ public class Login extends DefinedPacket
|
|||||||
|
|
||||||
worldNames = new HashSet<>();
|
worldNames = new HashSet<>();
|
||||||
int worldCount = readVarInt( buf );
|
int worldCount = readVarInt( buf );
|
||||||
Preconditions.checkArgument( worldCount < 128, "Too many worlds %s", worldCount );
|
|
||||||
|
|
||||||
for ( int i = 0; i < worldCount; i++ )
|
for ( int i = 0; i < worldCount; i++ )
|
||||||
{
|
{
|
||||||
worldNames.add( readString( buf ) );
|
worldNames.add( readString( buf ) );
|
||||||
|
Loading…
Reference in New Issue
Block a user