1
0
mirror of https://github.com/azlux/pymumble synced 2024-11-23 22:06:10 +00:00

Compare commits

..

No commits in common. "790a5262b0f454d3a66a2c58ac69ac5327dfc279" and "d37c4c721ce1ee0252e6126cd93c179c5684eadf" have entirely different histories.

2 changed files with 0 additions and 20 deletions

View File

@ -695,10 +695,6 @@ class Mumble(threading.Thread):
userstate.user_id = cmd.parameters["user_id"]
if "plugin_context" in cmd.parameters:
userstate.plugin_context = cmd.parameters["plugin_context"]
if "listening_channel_add" in cmd.parameters:
userstate.listening_channel_add.extend(cmd.parameters["listening_channel_add"])
if "listening_channel_remove" in cmd.parameters:
userstate.listening_channel_remove.extend(cmd.parameters["listening_channel_remove"])
self.send_message(PYMUMBLE_MSG_TYPES_USERSTATE, userstate)
cmd.response = True

View File

@ -265,19 +265,3 @@ class User(dict):
cmd = messages.RemoveUser(self.mumble_object.users.myself_session, params)
self.mumble_object.execute_command(cmd)
def add_listening_channels(self, channel):
"""Add user to listening channel"""
params = {"session": self["session"],
"listening_channel_add": channel}
cmd = messages.ModUserState(self.mumble_object.users.myself_session, params)
self.mumble_object.execute_command(cmd)
def remove_listening_channels(self, channel):
"""Remove user from listening channel"""
params = {"session": self["session"],
"listening_channel_remove": channel}
cmd = messages.ModUserState(self.mumble_object.users.myself_session, params)
self.mumble_object.execute_command(cmd)