Skip to content

Commit

Permalink
Update average travel speed constants
Browse files Browse the repository at this point in the history
  • Loading branch information
dymanoid committed May 19, 2019
1 parent 1926039 commit 85b25f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/RealTime/CustomAI/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ internal static class Constants
public const float PrepareToWorkHours = 1f;

/// <summary>An assumed maximum travel time to a target building (in hours).</summary>
public const float MaxTravelTime = 4f;
public const float MaxTravelTime = 3.5f;

/// <summary>An assumed minimum travel time to a target building (in hours).</summary>
public const float MinTravelTime = 0.75f;
public const float MinTravelTime = 0.5f;

/// <summary>An earliest hour when citizens wake up at home.</summary>
public const float EarliestWakeUp = 5.5f;
Expand All @@ -77,7 +77,7 @@ internal static class Constants
/// <summary>The average distance a citizen can move for (walking, by car, by public transport) during a full simulation
/// cycle at maximum time speed (6).
/// This value was determined empirically.</summary>
public const float AverageDistancePerSimulationCycle = 500f;
public const float AverageDistancePerSimulationCycle = 600f;

/// <summary>The maximum number of buildings (of one zone type) that are in construction or upgrading process.</summary>
public const int MaximumBuildingsInConstruction = 50;
Expand Down

0 comments on commit 85b25f0

Please sign in to comment.