Update to 1.6.3
This commit is contained in:
parent
db5510cc4e
commit
12ee68a315
@ -30,8 +30,8 @@ import net.md_5.bungee.protocol.skip.PacketReader;
|
|||||||
public class Vanilla implements Protocol
|
public class Vanilla implements Protocol
|
||||||
{
|
{
|
||||||
|
|
||||||
public static final byte PROTOCOL_VERSION = 74;
|
public static final byte PROTOCOL_VERSION = 77;
|
||||||
public static final String GAME_VERSION = "1.6.2";
|
public static final String GAME_VERSION = "1.6.3";
|
||||||
@Getter
|
@Getter
|
||||||
private static final Vanilla instance = new Vanilla();
|
private static final Vanilla instance = new Vanilla();
|
||||||
/*========================================================================*/
|
/*========================================================================*/
|
||||||
|
@ -98,7 +98,7 @@ public class UpstreamBridge extends PacketHandler
|
|||||||
if ( tabComplete.getCursor().startsWith( "/" ) )
|
if ( tabComplete.getCursor().startsWith( "/" ) )
|
||||||
{
|
{
|
||||||
List<String> results = new ArrayList<>();
|
List<String> results = new ArrayList<>();
|
||||||
bungee.getPluginManager().dispatchCommand( con, tabComplete.getCursor().substring( 1, tabComplete.getCursor().length() ), results );
|
bungee.getPluginManager().dispatchCommand( con, tabComplete.getCursor().substring( 1 ), results );
|
||||||
|
|
||||||
if ( !results.isEmpty() )
|
if ( !results.isEmpty() )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user