mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 02:08:21 +00:00
@ -470,7 +470,7 @@ class NetworkBinaryStream extends BinaryStream{
|
||||
$link->fromEntityUniqueId = $this->getEntityUniqueId();
|
||||
$link->toEntityUniqueId = $this->getEntityUniqueId();
|
||||
$link->type = $this->getByte();
|
||||
$link->bool1 = $this->getBool();
|
||||
$link->immediate = $this->getBool();
|
||||
|
||||
return $link;
|
||||
}
|
||||
@ -482,7 +482,7 @@ class NetworkBinaryStream extends BinaryStream{
|
||||
$this->putEntityUniqueId($link->fromEntityUniqueId);
|
||||
$this->putEntityUniqueId($link->toEntityUniqueId);
|
||||
$this->putByte($link->type);
|
||||
$this->putBool($link->bool1);
|
||||
$this->putBool($link->immediate);
|
||||
}
|
||||
|
||||
protected function getCommandOriginData() : CommandOriginData{
|
||||
|
Reference in New Issue
Block a user