aboutsummaryrefslogtreecommitdiff
path: root/server/src/room.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/room.rs')
-rw-r--r--server/src/room.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/src/room.rs b/server/src/room.rs
index 43cfa90..a47d2e5 100644
--- a/server/src/room.rs
+++ b/server/src/room.rs
@@ -86,6 +86,7 @@ impl Room {
pub async fn client_message(&self, sender: usize, packet: ServerboundPacket) {
match packet {
+ ServerboundPacket::Ping => (),
ServerboundPacket::Relay { recipient, message } => {
if let Some(recipient) = recipient {
self.send_to_client(recipient, ClientboundPacket::Message { sender, message })