Changeset 96


Ignore:
Timestamp:
Jul 21, 2014, 8:49:29 PM (10 years ago)
Author:
alloc
Message:

fixes

Location:
binary-improvements
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj

    r93 r96  
    5050    <Compile Include="src\TelnetCommands\ShowInventory.cs" />
    5151    <Compile Include="src\PlayerDataStuff.cs" />
     52    <Compile Include="src\CommandExtensions.cs" />
    5253  </ItemGroup>
    5354  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  • binary-improvements/7dtd-server-fixes/src/AllocsNetTelnetServer.cs

    r93 r96  
    134134                Log.Out("Telnet SetConsole called");
    135135                AllocsNetTelnetServer.console = console;
    136                 console.AddCommand(new GetGamePrefs(console));
    137                 console.AddCommand(new GetTime(console));
    138                 console.AddCommand(new ListPlayersExtended(console));
    139                 console.AddCommand(new SayToPlayer(console));
    140                 console.AddCommand(new SetTimeReal(console));
    141                 console.AddCommand(new ShowInventory(console));
    142136        }
    143137
  • binary-improvements/assembly-patcher/Main.cs

    r93 r96  
    3333
    3434                        addHook (type, "SavePlayerData", true, 2, true, typeof(PlayerDataStuff).GetMethod ("GM_SavePlayerData"));
     35                        addHook (type, "Awake", true, 0, true, typeof(CommandExtensions).GetMethod("InitCommandExtensions"));
    3536                }
    3637
Note: See TracChangeset for help on using the changeset viewer.