Add name_too_long translation

This commit is contained in:
md_5
2014-01-05 11:27:19 +11:00
parent 8c367d86e7
commit 7faefde51b
2 changed files with 2 additions and 1 deletions

View File

@@ -238,7 +238,7 @@ public class InitialHandler extends PacketHandler implements PendingConnection
if ( getName().length() > 16 )
{
disconnect( "Cannot have username longer than 16 characters" );
disconnect( bungee.getTranslation( "name_too_long" ) );
return;
}