mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
add post build cmdline
This commit is contained in:
parent
1fab8eb864
commit
1c051433dd
2 changed files with 5 additions and 2 deletions
|
@ -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>
|
|
@ -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++;
|
||||
|
|
Loading…
Add table
Reference in a new issue