Hello everyone ! I want drop all the items from a chest (getDrops return just the chest but not his content).
PHP: use pocketmine\tile\Chest as TileChest;$pos = ....; //Position of chest$tile = $pos->getLevel()->getTile($pos);if($tile instanceof TileChest){$tile->getInventory()->dropContents($pos->getLevel(), $pos);}