mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 01:46:04 +00:00
Made some changes for 0.12
This commit is contained in:
committed by
Shoghi Cervantes
parent
0380e9009a
commit
4258e22c02
@ -1912,9 +1912,9 @@ class Server{
|
||||
if(!$p->isEncoded){
|
||||
$p->encode();
|
||||
}
|
||||
$str .= $p->buffer;
|
||||
$str .= Binary::writeInt(strlen($p->buffer)) . $p->buffer;
|
||||
}else{
|
||||
$str .= $p;
|
||||
$str .= Binary::writeInt(strlen($p)) . $p;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user