Merge branch 'phase/39-school-owners'
This commit is contained in:
@@ -8,6 +8,7 @@ public enum SchoolCreationError
|
||||
{
|
||||
None = 0,
|
||||
LimitReached,
|
||||
ServerFull,
|
||||
InvalidName,
|
||||
InvalidStartDate,
|
||||
InvalidMap,
|
||||
|
||||
@@ -10,8 +10,11 @@ public sealed class SimulationOptions
|
||||
/// <summary>Fixed simulation steps per second.</summary>
|
||||
public int TickRate { get; set; } = 20;
|
||||
|
||||
/// <summary>How many schools may exist at the same time.</summary>
|
||||
public int MaxSchools { get; set; } = 6;
|
||||
/// <summary>How many schools one player may own at the same time.</summary>
|
||||
public int MaxSchools { get; set; } = 2;
|
||||
|
||||
/// <summary>How many school workers the process may run at once.</summary>
|
||||
public int MaxSchoolsTotal { get; set; } = 16;
|
||||
|
||||
/// <summary>Base speed of the game clock: real seconds are multiplied by this many game minutes.</summary>
|
||||
public double GameMinutesPerRealSecond { get; set; } = 1d;
|
||||
|
||||
Reference in New Issue
Block a user