Fixed underscores >.<

This commit is contained in:
Shoghi Cervantes 2015-06-06 18:12:39 +02:00
parent 21c6eeef11
commit b358a2e474
No known key found for this signature in database
GPG Key ID: 78464DB0A7837F89

View File

@ -1630,7 +1630,7 @@ class Player extends Human implements CommandSender, InventoryHolder, ChunkLoade
$c = ord($packet->username{$i});
if(($c >= ord("a") and $c <= ord("z")) or
($c >= ord("A") and $c <= ord("Z")) or
($c >= ord("0") and $c <= ord("9")) or $c === "_"
($c >= ord("0") and $c <= ord("9")) or $c === ord("_")
){
continue;
}