Update to 1.6.3

This commit is contained in:
md_5 2013-09-19 17:41:01 +10:00
parent db5510cc4e
commit 12ee68a315
2 changed files with 3 additions and 3 deletions

View File

@ -30,8 +30,8 @@ import net.md_5.bungee.protocol.skip.PacketReader;
public class Vanilla implements Protocol
{
public static final byte PROTOCOL_VERSION = 74;
public static final String GAME_VERSION = "1.6.2";
public static final byte PROTOCOL_VERSION = 77;
public static final String GAME_VERSION = "1.6.3";
@Getter
private static final Vanilla instance = new Vanilla();
/*========================================================================*/

View File

@ -98,7 +98,7 @@ public class UpstreamBridge extends PacketHandler
if ( tabComplete.getCursor().startsWith( "/" ) )
{
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() )
{