public static void UpdateRoomHashtable(Hashtable propertiesToSet)
    {
        _localRoomProperties.SetHashtable(propertiesToSet);
        var room = NetworkManager.net != null ? NetworkManager.net.CurrentRoom : null;

        if (room != null)
        {
            room.SetCustomProperties(propertiesToSet);
        }
    }