diff --git a/isometric-park-fna/Engines/SimulationBridgeEngine.cs b/isometric-park-fna/Engines/SimulationBridgeEngine.cs --- a/isometric-park-fna/Engines/SimulationBridgeEngine.cs +++ b/isometric-park-fna/Engines/SimulationBridgeEngine.cs @@ -86,7 +86,7 @@ { SendMessage(new TickMessage{}); //For now: - SendMessage(new SpawnContractMessage{ max_squares = 100, + SendMessage(new SpawnContractMessage{ max_squares = 150, name = string.Format("Test {0}", this.simulation.DateTime.ToShortDateString()) }); diff --git a/isometric-park-fna/FNAGame.cs b/isometric-park-fna/FNAGame.cs --- a/isometric-park-fna/FNAGame.cs +++ b/isometric-park-fna/FNAGame.cs @@ -53,8 +53,8 @@ private const int height = 640; //new tile stuff - int squaresAcross = 50; - int squaresDown = 50; + int squaresAcross = 100; + int squaresDown = 100; // int baseOffsetX = -14; // int baseOffsetY = -14; diff --git a/isometric-park-fna/Simulation.cs b/isometric-park-fna/Simulation.cs --- a/isometric-park-fna/Simulation.cs +++ b/isometric-park-fna/Simulation.cs @@ -58,6 +58,7 @@ public const int MAX_TREES_TO_PLANT = 25; public const int MAX_TREES_TO_CLEAR = 25; + private const int SUBSIDY_AMOUNT = 2000; public int Tick { @@ -294,7 +295,7 @@ DateTime = this.DateTime, money = this.money, trees = this.map.tree_count, - subsidy = 1000, + subsidy = SUBSIDY_AMOUNT, contracts = this.contracts, upkeep = this.map.tree_count * 1, tree_planting = this.tree_planting * Simulation.TREE_PLANT_COST,