aboutsummaryrefslogtreecommitdiffstats
path: root/mumlib/src/command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mumlib/src/command.rs')
-rw-r--r--mumlib/src/command.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mumlib/src/command.rs b/mumlib/src/command.rs
index 28b4d79..675fb7d 100644
--- a/mumlib/src/command.rs
+++ b/mumlib/src/command.rs
@@ -20,13 +20,13 @@ pub enum Command {
},
ServerDisconnect,
Status,
- DeafenSelf,
- MuteSelf,
- MuteOther(String),
ServerStatus {
host: String,
port: u16,
},
+ DeafenSelf(Option<bool>),
+ MuteSelf(Option<bool>),
+ MuteOther(String, Option<bool>),
}
#[derive(Debug, Deserialize, Serialize)]