- Timestamp:
- Sep 13, 2014, 12:55:47 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/NetConnections/NetTelnetServer.cs
r182 r190 32 32 public static void Disconnect () 33 33 { 34 Log.Out ("Disconnect console clients!"); 34 35 foreach (IServer s in servers) 35 36 s.Disconnect (); … … 42 43 } 43 44 foreach (IServer s in servers) 44 s. WriteToClient(line);45 s.SendLine (line); 45 46 } 46 47 47 public static void WriteToClient_Single (string line, IConnection client)48 {49 if (line == null) {50 return;51 }52 foreach (IServer s in servers)53 s.WriteToClient_Single (line, client);54 }55 48 } 56 49 }
Note:
See TracChangeset
for help on using the changeset viewer.