Only interrupt tab completion if we have things to complete!

This commit is contained in:
md_5 2013-09-17 10:28:51 +10:00
parent 5ed5c71aea
commit db5510cc4e

View File

@ -99,8 +99,12 @@ public class UpstreamBridge extends PacketHandler
{
List<String> results = new ArrayList<>();
bungee.getPluginManager().dispatchCommand( con, tabComplete.getCursor().substring( 1, tabComplete.getCursor().length() ), results );
con.unsafe().sendPacket( new PacketCBTabComplete( results.toArray( new String[ results.size() ] ) ) );
throw new CancelSendSignal();
if ( !results.isEmpty() )
{
con.unsafe().sendPacket( new PacketCBTabComplete( results.toArray( new String[ results.size() ] ) ) );
throw new CancelSendSignal();
}
}
}