diff --git a/src/network/Packet.php b/src/network/Packet.php index d65795990..9a58c3da0 100644 --- a/src/network/Packet.php +++ b/src/network/Packet.php @@ -271,7 +271,7 @@ class Packet{ $pk = new CustomPacketHandler($id, $pak); $pk->data["length"] = $ln; $pk->data["id"] = $id; - $pk->data["counter"] = $messageNumber; + $pk->data["counter"] = $messageIndex; $pk->data["packetName"] = $pk->name; $this->data["packets"][] = array($pid, $pk->data, $pak); } diff --git a/src/world/Entity.php b/src/world/Entity.php index 1b107b4ff..9ea4509d9 100644 --- a/src/world/Entity.php +++ b/src/world/Entity.php @@ -402,13 +402,13 @@ class Entity extends stdClass{ if ($rotation < 0) { $rotation += 360.0; } - if((0 <= $rotation and $rotation < 45) or (315 <= $rotation and $rotation < 360)) { + if((0 <= $rotation and $rotation < 45) or (315 <= $rotation and $rotation < 360)){ return 2; //North - }elseif(45 <= $rotation and $rotation < 135) { + }elseif(45 <= $rotation and $rotation < 135){ return 3; //East - }elseif(135 <= $rotation and $rotation < 225) { + }elseif(135 <= $rotation and $rotation < 225){ return 0; //South - }elseif(225 <= $rotation and $rotation < 315) { + }elseif(225 <= $rotation and $rotation < 315){ return 1; //West }else{ return null;