private void AcquireAllAvailableBroadcastingPlugins()
    {
        foreach (var storable in SuperController.singleton
                 .GetAtoms()
                 .SelectMany(atom => atom.GetStorableIDs()
                             .Select(atom.GetStorableByID)
                             .Where(s => s is MVRScript)))
        {
            _remoteCommandsManager.TryRegister(storable);
        }

        foreach (var storable in SuperController.singleton
                 .GetComponentInChildren <MVRPluginManager>()
                 .GetComponentsInChildren <MVRScript>()
                 .Where(s => !ReferenceEquals(s, this)))
        {
            _remoteCommandsManager.TryRegister(storable);
        }
    }