diff --git a/Assets/Scenes/Simulation.unity b/Assets/Scenes/Simulation.unity
index 220b73672343ac19a706893f6487cdfc7ad31b94..665cb3b0801edc187bd4ae77801414ce934a9455 100644
--- a/Assets/Scenes/Simulation.unity
+++ b/Assets/Scenes/Simulation.unity
@@ -471,7 +471,7 @@ Transform:
   m_PrefabAsset: {fileID: 0}
   m_GameObject: {fileID: 519420028}
   m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
-  m_LocalPosition: {x: 2, y: -5, z: -10}
+  m_LocalPosition: {x: 2, y: -4, z: -10}
   m_LocalScale: {x: 1, y: 1, z: 1}
   m_Children: []
   m_Father: {fileID: 0}
diff --git a/Assets/Scripts/Presentation/World/SimulationManager.cs b/Assets/Scripts/Presentation/World/SimulationManager.cs
index db2dd02ce43c5df55ad6db9aeb202cca6b0a8dd4..1d73bb98a77a3443946f57934136996bb2f37a7c 100644
--- a/Assets/Scripts/Presentation/World/SimulationManager.cs
+++ b/Assets/Scripts/Presentation/World/SimulationManager.cs
@@ -39,8 +39,12 @@ public class SimulationManager : MonoBehaviour {
 			Debug.LogError($"[Logic Exception]: ${e} {e.InnerException}");
 		}
 
+		//Clone the ScriptableObject: it calculates and caches a random value,
+		//  which shouldn't be persisted between separate games.
+		WorldConfig worldConfigClone = Instantiate(worldConfig);
+
 		GameOverview = new GameOverview(ExceptionHandler, Random.Range(0, 9999),
-			overviewConfig, economyConfig, worldConfig);
+			overviewConfig, economyConfig, worldConfigClone);
 	}
 
 	private void Start() {