rust/hedgewars-server/src/handlers/inlobby.rs
changeset 16018 fb389df02e3e
parent 15968 ce47259d5c86
child 16019 c40f5e27aaf0
--- a/rust/hedgewars-server/src/handlers/inlobby.rs	Mon Feb 12 21:26:35 2024 +0300
+++ b/rust/hedgewars-server/src/handlers/inlobby.rs	Tue Feb 13 00:58:17 2024 +0300
@@ -26,7 +26,8 @@
 ) {
     use hedgewars_network_protocol::messages::HwProtocolMessage::*;
 
-    todo!("add kick/ban handlers");
+    //todo!("add kick/ban handlers");
+    //todo!("add kick/ban handling");
 
     match message {
         CreateRoom(name, password) => match server.create_room(client_id, name, password) {
@@ -49,7 +50,7 @@
             }
         },
         Chat(msg) => {
-            todo!("add client quiet flag");
+            //todo!("add client quiet flag");
             response.add(
                 ChatMsg {
                     nick: server.client(client_id).nick.clone(),