mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 02:08:21 +00:00
Typehinted things in BinaryStream, sorted some methods and related bugfixes
This commit is contained in:
@ -117,7 +117,7 @@ abstract class DataPacket extends BinaryStream{
|
||||
$value = $this->getByte();
|
||||
break;
|
||||
case Entity::DATA_TYPE_SHORT:
|
||||
$value = $this->getLShort(true); //signed
|
||||
$value = $this->getSignedLShort();
|
||||
break;
|
||||
case Entity::DATA_TYPE_INT:
|
||||
$value = $this->getVarInt();
|
||||
|
Reference in New Issue
Block a user