mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 00:33:59 +00:00
Real Minecraft username check
This commit is contained in:
parent
ba3dfd91db
commit
5fab555c48
@ -529,10 +529,10 @@ class Player{
|
||||
break;
|
||||
}
|
||||
$this->loggedIn = true;
|
||||
$this->username = str_replace(array("\x00", "/", " ", "\r", "\n", '"', "'"), array("", "-", "_", "", "", "", ""), $data["username"]);
|
||||
$this->iusername = strtolower($this->username);
|
||||
|
||||
if($this->username == ""){
|
||||
if(preg_match('#^[a-zA-Z0-9_]{2,16}$#', $data["username"])){
|
||||
$this->username = $data["username"];
|
||||
$this->iusername = strtolower($this->username);
|
||||
}else{
|
||||
$this->close("bad username", false);
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user