# HG changeset patch # User alys # Date 2021-05-25 04:55:20 # Node ID 5d92bcfae63cccbb998ad659f41b26f73293b4aa # Parent 59fdbace89aefac7e09ac2d9b2041ff9eb097928 Tweak area generation. diff --git a/isometric-park-fna/Engines/Spawners/ContractSpawner.cs b/isometric-park-fna/Engines/Spawners/ContractSpawner.cs --- a/isometric-park-fna/Engines/Spawners/ContractSpawner.cs +++ b/isometric-park-fna/Engines/Spawners/ContractSpawner.cs @@ -140,8 +140,8 @@ int min_squares = (message.min_squares == null) ? DEFAULT_MIN_SQUARES : (int)message.min_squares; - var odds_to_try = new[] {0.5f, 0.75f, 1.0f, 1.0f}; - var retry_location = new[] {false, false, false, true}; + var odds_to_try = new[] {0.5f, 0.75f, 1.0f, 0.5f, 0.75f, 1.0f}; + var retry_location = new[] {false, false, false, true, false, false}; Debug.Assert(odds_to_try.Count() == retry_location.Count()); // foreach( double odds in odds_to_try ) for(int i = 0; i < odds_to_try.Count(); i++)