Changeset 115 for binary-improvements/7dtd-server-fixes/src
- Timestamp:
- Aug 13, 2014, 4:52:22 PM (10 years ago)
- Location:
- binary-improvements/7dtd-server-fixes/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/AllocsNetTelnetServer.cs
r107 r115 153 153 } 154 154 } catch (Exception e) { 155 Log.Out ("Error in AllocsTelnetServer.Rem voeClosedConnections: " + e);155 Log.Out ("Error in AllocsTelnetServer.RemoveClosedConnections: " + e); 156 156 } 157 157 } … … 169 169 } 170 170 171 public static void WriteToClient (string line, AllocsTelnetConnection client)171 public static void WriteToClient_Single (string line, AllocsTelnetConnection client) 172 172 { 173 173 if (line == null) { -
binary-improvements/7dtd-server-fixes/src/ConsoleOutputSeparator.cs
r107 r115 50 50 } else { 51 51 if (console.telnetServer != null && issuerOfCurrentTelnetCommand != null) 52 AllocsNetTelnetServer.WriteToClient (_line, issuerOfCurrentTelnetCommand);52 AllocsNetTelnetServer.WriteToClient_Single (_line, issuerOfCurrentTelnetCommand); 53 53 else if (ControlPanel.IsStarted ()) 54 54 ControlPanel.AddTextToOutputBuffer (_line);
Note:
See TracChangeset
for help on using the changeset viewer.