Incremented speedMeasure() size

This commit is contained in:
Shoghi Cervantes 2013-09-07 21:27:05 +02:00
parent 0c6eaa0609
commit 7c9255e21e

View File

@ -46,7 +46,7 @@ class Entity extends Position{
public $fallY; public $fallY;
public $fallStart; public $fallStart;
private $tickCounter; private $tickCounter;
private $speedMeasure = array(0, 0, 0); private $speedMeasure = array(0, 0, 0, 0, 0, 0, 0);
private $server; private $server;
private $isStatic; private $isStatic;
public $level; public $level;
@ -519,7 +519,7 @@ class Entity extends Position{
} }
$this->calculateVelocity(); $this->calculateVelocity();
if($this->speed <= 7 or ($this->speed <= 15 and ($this->player->gamemode & 0x01) === 0x01)){ if($this->speed <= 9 or ($this->speed <= 20 and ($this->player->gamemode & 0x01) === 0x01)){
$this->player->lastCorrect = new Vector3($this->last[0], $this->last[1], $this->last[2]); $this->player->lastCorrect = new Vector3($this->last[0], $this->last[1], $this->last[2]);
} }
} }
@ -848,7 +848,7 @@ class Entity extends Position{
} }
public function resetSpeed(){ public function resetSpeed(){
$this->speedMeasure = array(0, 0, 0); $this->speedMeasure = array(0, 0, 0, 0, 0, 0, 0);
} }
public function getSpeed(){ public function getSpeed(){