rust/hedgewars-server/src/core/server.rs
changeset 15552 0031683bfa76
parent 15551 7478568cffbe
child 15553 852682c2003f
--- a/rust/hedgewars-server/src/core/server.rs	Fri Apr 10 21:58:09 2020 +0300
+++ b/rust/hedgewars-server/src/core/server.rs	Sat Apr 11 23:20:09 2020 +0300
@@ -523,7 +523,7 @@
     server: &'a mut HwServer,
     client_id: ClientId,
     room_id: RoomId,
-    is_room_removed: bool
+    is_room_removed: bool,
 }
 
 impl<'a> HwRoomControl<'a> {
@@ -534,7 +534,7 @@
                 server,
                 client_id,
                 room_id,
-                is_room_removed: false
+                is_room_removed: false,
             })
         } else {
             None