Ignore:
Timestamp:
Aug 13, 2014, 4:52:22 PM (10 years ago)
Author:
alloc
Message:

Fixes: Changed to a single solution for both patcher + fixes

Location:
binary-improvements/7dtd-server-fixes/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/AllocsNetTelnetServer.cs

    r107 r115  
    153153                        }
    154154                } catch (Exception e) {
    155                         Log.Out ("Error in AllocsTelnetServer.RemvoeClosedConnections: " + e);
     155                        Log.Out ("Error in AllocsTelnetServer.RemoveClosedConnections: " + e);
    156156                }
    157157        }
     
    169169        }
    170170
    171         public static void WriteToClient (string line, AllocsTelnetConnection client)
     171        public static void WriteToClient_Single (string line, AllocsTelnetConnection client)
    172172        {
    173173                if (line == null) {
  • binary-improvements/7dtd-server-fixes/src/ConsoleOutputSeparator.cs

    r107 r115  
    5050                } else {
    5151                        if (console.telnetServer != null && issuerOfCurrentTelnetCommand != null)
    52                                 AllocsNetTelnetServer.WriteToClient (_line, issuerOfCurrentTelnetCommand);
     52                                AllocsNetTelnetServer.WriteToClient_Single (_line, issuerOfCurrentTelnetCommand);
    5353                        else if (ControlPanel.IsStarted ())
    5454                                ControlPanel.AddTextToOutputBuffer (_line);
Note: See TracChangeset for help on using the changeset viewer.