home · contact · privacy
Refactor.
[plomrogue2-experiments] / server_ / game.py
index eee30d9702a4814322254411546bb86b5d4b4b9d..af6c97030c1096395f742e71daae002ae5987186 100644 (file)
@@ -159,10 +159,10 @@ class Commander():
 
     def cmd_ECHO(self, msg, connection_id):
         """Send msg to caller."""
-        self.send_to(connection_id, msg)
+        self.send(msg, connection_id)
     cmd_ECHO.argtypes = 'string'
 
     def cmd_ALL(self, msg, connection_id):
         """Send msg to all clients."""
-        self.send_all(msg)
+        self.send(msg)
     cmd_ALL.argtypes = 'string'