Changeset 115 for binary-improvements/7dtd-server-fixes
- Timestamp:
- Aug 13, 2014, 4:52:22 PM (10 years ago)
- Location:
- binary-improvements/7dtd-server-fixes
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj
r114 r115 14 14 <DebugType>full</DebugType> 15 15 <Optimize>false</Optimize> 16 <OutputPath> bin\Debug</OutputPath>16 <OutputPath>..\bin\Debug</OutputPath> 17 17 <DefineConstants>DEBUG;</DefineConstants> 18 18 <ErrorReport>prompt</ErrorReport> … … 23 23 <DebugType>none</DebugType> 24 24 <Optimize>true</Optimize> 25 <OutputPath> bin\Release</OutputPath>25 <OutputPath>..\bin\Release</OutputPath> 26 26 <ErrorReport>prompt</ErrorReport> 27 27 <WarningLevel>4</WarningLevel> … … 30 30 <ItemGroup> 31 31 <Reference Include="System" /> 32 <Reference Include="Assembly-CSharp">33 <HintPath>..\assembly-patcher\bin\Release\Assembly-CSharp.dll</HintPath>34 </Reference>35 32 <Reference Include="UnityEngine"> 36 <HintPath>..\ assembly-patcher\bin\Release\UnityEngine.dll</HintPath>33 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath> 37 34 </Reference> 38 35 <Reference Include="SteamworksManaged"> 39 <HintPath>bin\Release\SteamworksManaged.dll</HintPath> 36 <HintPath>..\7dtd-binaries\SteamworksManaged.dll</HintPath> 37 </Reference> 38 <Reference Include="Assembly-CSharp"> 39 <HintPath>..\7dtd-binaries\Assembly-CSharp.deobf.dll</HintPath> 40 40 </Reference> 41 41 </ItemGroup> -
binary-improvements/7dtd-server-fixes/7dtd-server-fixes.userprefs
r107 r115 1 1 <Properties> 2 2 <MonoDevelop.Ide.Workspace ActiveConfiguration="Release" /> 3 <MonoDevelop.Ide.Workbench ActiveDocument="src/A dminToolsStuff.cs">3 <MonoDevelop.Ide.Workbench ActiveDocument="src/AllocsLogFunctions.cs"> 4 4 <Files> 5 <File FileName="src/AssemblyInfo.cs" Line="20" Column="40" /> 6 <File FileName="src/AllocsNetTelnetServer.cs" Line="155" Column="65" /> 7 <File FileName="src/AllocsTelnetConnection.cs" Line="50" Column="3" /> 8 <File FileName="src/AllocsLogFunctions.cs" Line="27" Column="43" /> 9 <File FileName="src/AdminToolsStuff.cs" Line="33" Column="1" /> 10 <File FileName="src/PlayerDataStuff.cs" Line="59" Column="40" /> 11 <File FileName="src/TelnetCommands/SayToPlayer.cs" Line="23" Column="49" /> 12 <File FileName="src/CommonMappingFunctions.cs" Line="149" Column="1" /> 13 <File FileName="src/CommandExtensions.cs" Line="34" Column="28" /> 5 <File FileName="src/AllocsNetTelnetServer.cs" Line="166" Column="29" /> 6 <File FileName="src/AllocsTelnetConnection.cs" Line="5" Column="36" /> 7 <File FileName="src/AllocsLogFunctions.cs" Line="29" Column="3" /> 8 <File FileName="src/CommonMappingFunctions.cs" Line="121" Column="5" /> 9 <File FileName="src/CommandExtensions.cs" Line="20" Column="26" /> 10 <File FileName="src/TelnetCommands/PrivateMassageConnections.cs" Line="15" Column="26" /> 11 <File FileName="src/ConsoleOutputSeparator.cs" Line="52" Column="47" /> 14 12 </Files> 15 13 </MonoDevelop.Ide.Workbench> -
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.