add post build cmdline

This commit is contained in:
SilicaAndPina 2020-12-24 20:54:38 +13:00
parent 1fab8eb864
commit 1c051433dd
2 changed files with 5 additions and 2 deletions

View file

@ -131,4 +131,8 @@
<None Include="Resources\default_cross_domain.xml" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>copy "$(SolutionDir)..\DataCollection\GameData.json" "$(TargetDir)GameData.json" /Y
copy "$(SolutionDir)..\DataCollection\HI1.MAP" "$(TargetDir)HI1.MAP" /Y</PostBuildEvent>
</PropertyGroup>
</Project>

View file

@ -35,7 +35,7 @@ namespace HISP.Server
*/
private static int gameTickSpeed = 4320; // Changing this to ANYTHING else will cause desync with the client.
private static int totalMinutesElapsed = 0;
private static int oneMinute = 1000 * 60; // Change ONLY if you want minutely events to happen more frequently.
private static int oneMinute = 1000 * 60;
private static List<GameClient> connectedClients = new List<GameClient>();
private static Timer gameTimer; // Controls in-game time.
private static Timer minuteTimer; // ticks every real world minute.
@ -45,7 +45,6 @@ namespace HISP.Server
gameTimer.Change(gameTickSpeed, gameTickSpeed);
}
private static void onMinuteTick(object state)
{
totalMinutesElapsed++;