replacing new Vector3(0, 0, 0) with Vector3::zero() (#5640)

This commit is contained in:
João
2023-03-20 12:54:28 +00:00
committed by GitHub
parent f696a5881b
commit 2751e1ec02
5 changed files with 5 additions and 5 deletions

View File

@ -1376,7 +1376,7 @@ class Player extends Human implements CommandSender, ChunkListener, IPlayer{
if($this->spawned){
Timings::$playerMove->startTiming();
$this->processMostRecentMovements();
$this->motion = new Vector3(0, 0, 0); //TODO: HACK! (Fixes player knockback being messed up)
$this->motion = Vector3::zero(); //TODO: HACK! (Fixes player knockback being messed up)
if($this->onGround){
$this->inAirTicks = 0;
}else{