mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-17 04:06:54 +00:00
Incremented speedMeasure() size
This commit is contained in:
@@ -46,7 +46,7 @@ class Entity extends Position{
|
||||
public $fallY;
|
||||
public $fallStart;
|
||||
private $tickCounter;
|
||||
private $speedMeasure = array(0, 0, 0);
|
||||
private $speedMeasure = array(0, 0, 0, 0, 0, 0, 0);
|
||||
private $server;
|
||||
private $isStatic;
|
||||
public $level;
|
||||
@@ -519,7 +519,7 @@ class Entity extends Position{
|
||||
|
||||
}
|
||||
$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]);
|
||||
}
|
||||
}
|
||||
@@ -848,7 +848,7 @@ class Entity extends Position{
|
||||
}
|
||||
|
||||
public function resetSpeed(){
|
||||
$this->speedMeasure = array(0, 0, 0);
|
||||
$this->speedMeasure = array(0, 0, 0, 0, 0, 0, 0);
|
||||
}
|
||||
|
||||
public function getSpeed(){
|
||||
|
Reference in New Issue
Block a user