pocketmine\entity\AttributeMap::needSend PHP Метод

needSend() публичный Метод

public needSend ( ) : array
Результат array
    public function needSend() : array
    {
        return array_filter($this->attributes, function (Attribute $attribute) {
            return $attribute->isSyncable() and $attribute->isDesynchronized();
        });
    }