Fixed a few wrong fields

This commit is contained in:
Shoghi Cervantes
2014-02-08 01:25:03 +01:00
parent f6ecf51516
commit 1f5ff78f06
5 changed files with 14 additions and 14 deletions

View File

@ -27,7 +27,7 @@ class ContainerClosePacket extends RakNetDataPacket{
}
public function decode(){
$this->windowid = $this->getInt();
$this->windowid = $this->getByte();
}
public function encode(){

View File

@ -32,8 +32,8 @@ class RemoveBlockPacket extends RakNetDataPacket{
public function decode(){
$this->eid = $this->getInt();
$this->x = $this->getInt();
$this->y = $this->getInt();
$this->z = $this->getInt();
$this->y = $this->getByte();
}
public function encode(){