aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/plugins/chat/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-client/src/plugins/chat/mod.rs')
-rw-r--r--azalea-client/src/plugins/chat/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/azalea-client/src/plugins/chat/mod.rs b/azalea-client/src/plugins/chat/mod.rs
index 3d03d24e..8562f3ce 100644
--- a/azalea-client/src/plugins/chat/mod.rs
+++ b/azalea-client/src/plugins/chat/mod.rs
@@ -152,7 +152,6 @@ impl Client {
content: message.to_string(),
kind: ChatKind::Message,
});
- let _ = self.run_schedule_sender.try_send(());
}
/// Send a command packet to the server. The `command` argument should not
@@ -166,7 +165,6 @@ impl Client {
content: command.to_string(),
kind: ChatKind::Command,
});
- let _ = self.run_schedule_sender.try_send(());
}
/// Send a message in chat.
@@ -183,7 +181,6 @@ impl Client {
entity: self.entity,
content: content.to_string(),
});
- let _ = self.run_schedule_sender.try_send(());
}
}