From 4c41cc1050b9d1d0e9794b9119d60ef4e06d2f18 Mon Sep 17 00:00:00 2001 From: Treeco <5021038-Treeco@users.noreply.gitlab.com> Date: Thu, 21 May 2020 21:59:59 +0100 Subject: [PATCH] Changed SEED_SKIP to 0 --- world/src/civ/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world/src/civ/mod.rs b/world/src/civ/mod.rs index 7c4558a3de..d17348efc5 100644 --- a/world/src/civ/mod.rs +++ b/world/src/civ/mod.rs @@ -35,7 +35,7 @@ pub struct Civs { } // Change this to get rid of particularly horrid seeds -const SEED_SKIP: u8 = 1; +const SEED_SKIP: u8 = 0; pub struct GenCtx<'a, R: Rng> { sim: &'a mut WorldSim,