aboutsummaryrefslogtreecommitdiffstats
path: root/mumlib/src/command.rs
diff options
context:
space:
mode:
authorGustav Sörnäs <gustav@sornas.net>2020-11-21 13:55:36 +0100
committerGustav Sörnäs <gustav@sornas.net>2020-11-21 16:20:04 +0100
commit06a8c9024787cc13acfb4ae2b0666d3adaf87274 (patch)
tree6ccc7ce5edfa57dee8749aa477de868ac3028106 /mumlib/src/command.rs
parenta5448f67ca40a1619e7ef792dfbb5a440c3020e0 (diff)
downloadmum-06a8c9024787cc13acfb4ae2b0666d3adaf87274.tar.gz
print status of mute/deafened when they change
Diffstat (limited to 'mumlib/src/command.rs')
-rw-r--r--mumlib/src/command.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mumlib/src/command.rs b/mumlib/src/command.rs
index 675fb7d..2e824fc 100644
--- a/mumlib/src/command.rs
+++ b/mumlib/src/command.rs
@@ -46,4 +46,10 @@ pub enum CommandResponse {
max_users: u32,
bandwidth: u32,
},
+ MuteStatus {
+ is_muted: bool,
+ },
+ DeafenStatus {
+ is_deafened: bool,
+ },
}