rust/hedgewars-server/src/server/core.rs
changeset 14686 9f98086de1b6
parent 14674 b87c71ccd17d
child 14693 6a2e13e36b7f
--- a/rust/hedgewars-server/src/server/core.rs	Tue Feb 05 23:18:47 2019 +0300
+++ b/rust/hedgewars-server/src/server/core.rs	Wed Feb 06 00:14:04 2019 +0300
@@ -105,12 +105,6 @@
         self.send(client_id, &message.destination, message.message)
     }
 
-    pub fn react(&mut self, client_id: ClientId, actions: Vec<actions::Action>) {
-        for action in actions {
-            actions::run_action(self, client_id, action);
-        }
-    }
-
     pub fn lobby(&self) -> &HWRoom {
         &self.rooms[self.lobby_id]
     }