Skip to content

Commit 7e1095e

Browse files
committed
Reenabled collision against entities on move
1 parent f1519e6 commit 7e1095e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pocketmine/entity/Entity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ public function move($dx, $dy, $dz){
874874
//TODO: big messy loop
875875
}*/
876876

877-
$list = $this->level->getCollisionCubes($this, $this->boundingBox->getOffsetBoundingBox($dx, $dy, $dz), false);
877+
$list = $this->level->getCollisionCubes($this, $this->boundingBox->getOffsetBoundingBox($dx, $dy, $dz));
878878

879879

880880
foreach($list as $bb){

0 commit comments

Comments
 (0)