Structure Seed cohesion

This commit is contained in:
Daniel Mills 2020-09-04 03:48:40 -04:00
parent e7f0ba1982
commit fad17c9cd2

View File

@ -177,7 +177,7 @@ public class IrisStructure extends IrisRegistrant
{ {
return wallGenerator.aquire(() -> return wallGenerator.aquire(() ->
{ {
RNG rngx = rng.nextParallelRNG((int) (name.hashCode() + gridHeight - gridSize + maxLayers + tiles.size())); RNG rngx = new RNG(228385999).nextParallelRNG((int) (name.hashCode() + gridHeight - gridSize + maxLayers + tiles.size()));
return wallStyle.create(rngx).scale(0.8); return wallStyle.create(rngx).scale(0.8);
}); });
} }