aboutsummaryrefslogtreecommitdiff
path: root/azalea/examples/testbot/commands.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea/examples/testbot/commands.rs')
-rw-r--r--azalea/examples/testbot/commands.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea/examples/testbot/commands.rs b/azalea/examples/testbot/commands.rs
index 930f41ca..4c0e7235 100644
--- a/azalea/examples/testbot/commands.rs
+++ b/azalea/examples/testbot/commands.rs
@@ -23,8 +23,9 @@ impl CommandSource {
pub fn reply(&self, message: impl Into<String>) {
let message = message.into();
if self.chat.is_whisper() {
+ // /msg instead of /w for compat with custom servers
self.bot
- .chat(format!("/w {} {message}", self.chat.sender().unwrap()));
+ .chat(format!("/msg {} {message}", self.chat.sender().unwrap()));
} else {
self.bot.chat(message);
}