diff --git a/src/world/Entity.php b/src/world/Entity.php index 3f2b77ac6..8562e7693 100644 --- a/src/world/Entity.php +++ b/src/world/Entity.php @@ -240,6 +240,11 @@ class Entity extends Position{ $this->close(); //Despawn timer return false; } + }elseif($this->class === ENTITY_OBJECT and $this->type === OBJECT_ARROW){ + if(($time - $this->spawntime) >= 60){ + $this->close(); //Despawn timer + return false; + } } if($this->class === ENTITY_MOB){