Skip to content

Instantly share code, notes, and snippets.

@cwage
Last active February 15, 2026 00:51
Show Gist options
  • Select an option

  • Save cwage/41cd828300d10c3656a7ce7ee9793ebc to your computer and use it in GitHub Desktop.

Select an option

Save cwage/41cd828300d10c3656a7ce7ee9793ebc to your computer and use it in GitHub Desktop.
Rivers mod v4.7.5 worldgen bug - IndexOutOfRangeException in terrain generation

Rivers Mod v4.7.5 - Worldgen Terrain Pass Crash (IndexOutOfRangeException)

Environment

  • Vintage Story v1.21.6 (Stable)
  • Rivers mod v4.7.5
  • World seed: 313687447
  • OS: Linux

Summary

The Rivers mod's NewGenTerra.Generate() throws System.IndexOutOfRangeException during the Terrain worldgen pass for certain chunk columns, resulting in missing/empty terrain. Structure generation passes (e.g. ruins) still run, so structures spawn floating over void.

Affected Chunks

Two bands of failed chunk columns:

  • Along Z=15971: X=16055 through X=16067 (13 chunks)
  • Along X=16055: Z=15959 through Z=15971 (13 chunks)

First occurrence in this world was on 2026-02-05 (chunk X=15999, Z=16055), then a larger batch on 2026-02-09 (X=15993-15997, Z=16055), and the main cluster on 2026-02-14 as the player explored the area.

Stack Trace

System.IndexOutOfRangeException: Index was outside the bounds of the array.
   at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(
       WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight)
       in LerpedWeightedIndex2DMap.cs:line 227
   at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(
       Single x, Single z, Single[] output)
       in LerpedWeightedIndex2DMap.cs:line 115
   at Rivers.NewGenTerra.Generate(
       IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ)
       in NewGenTerra.cs:line 278-280
   at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(
       ChunkColumnLoadRequest chunkRequest, Int32 forPass)
       in SupplyChunks.cs:line 1936

Full Worldgen Log

The full server-worldgen.log showing all errors is attached/linked below.

5.2.2026 22:55:19 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15999,Z=16055 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
5.2.2026 22:55:19 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15999,Z=16056 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
5.2.2026 22:55:19 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15999,Z=16057 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
5.2.2026 22:55:19 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15999,Z=16058 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
5.2.2026 22:55:19 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15999,Z=16059 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
5.2.2026 22:55:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15999,Z=16060 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
5.2.2026 22:55:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15999,Z=16061 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
5.2.2026 22:55:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15999,Z=16062 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
5.2.2026 22:55:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15999,Z=16063 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:12 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16024,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:12 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16025,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:12 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16022,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:12 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16023,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16023,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16024,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16025,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16026,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16021,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16022,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16024,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16025,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16026,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16027,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16021,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Rivers.NewGenTerra.OnChunkColumnGen(IChunkColumnGenerateRequest request) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 251
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16030,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16031,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16022,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16023,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16032,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16033,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16034,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16035,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:28 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16036,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:35 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16023,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:35 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16024,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:35 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16025,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:35 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16026,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:35 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16027,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:35 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16021,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:35 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16022,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16030,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 280
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16037,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16031,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16032,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16033,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16034,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16035,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16036,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16024,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16025,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16026,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16027,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16021,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16022,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16023,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16038,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16037,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16032,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16033,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16034,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16035,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16036,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16025,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16026,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16021,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16022,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16023,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16039,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16038,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16037,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16024,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16032,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 280
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16033,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16034,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16035,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:50:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16036,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:02 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16021,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 280
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:02 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16022,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:02 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16023,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:02 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16024,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:02 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16025,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:03 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16033,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 280
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:03 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16034,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:03 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16035,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16039,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16035,Z=15957 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16036,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16037,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:20 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16038,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16039,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16040,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16040,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16036,Z=15957 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16037,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16038,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:37 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16041,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:37 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16039,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:37 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16041,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:37 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16040,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:37 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16038,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:37 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16037,Z=15957 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16035,Z=15956 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 280
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16040,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16041,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16038,Z=15957 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16039,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16036,Z=15956 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16037,Z=15956 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:44 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16042,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:44 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16042,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:44 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16040,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:44 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16042,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:44 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16039,Z=15957 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:44 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16038,Z=15956 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:44 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16041,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:56 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16042,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:56 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16043,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:56 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16043,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:56 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16043,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:56 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16041,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:56 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16039,Z=15956 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:51:56 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16040,Z=15957 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:54:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16044,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:54:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16044,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:54:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16044,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:54:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16040,Z=15956 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:54:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16041,Z=15957 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:54:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16042,Z=15958 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 13:54:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16043,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 14:19:02 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16036,Z=15955 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 14:19:02 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16037,Z=15955 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 14:19:02 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16038,Z=15955 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 14:28:34 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16039,Z=15955 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:17 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16043 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:17 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16044 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:34 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16042 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:34 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16043 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16045 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16041 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16042 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16044 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16043 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16038 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16039 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16040 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16041 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16046 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16044 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16045 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16042 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:14:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16043 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:03 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16044 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:03 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16045 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:03 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16046 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:03 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16047 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16037 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16038 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16039 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16040 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16041 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16042 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16043 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16044 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16045 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16046 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16047 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16048 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:16 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16045 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:16 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16049 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:16 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16046 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:16 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16047 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:16 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16048 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16046 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16049 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16047 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16048 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16039 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16040 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16041 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16042 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16043 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16044 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16036 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16037 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16038 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16045 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16046 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16047 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16050 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16050 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16048 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16049 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16047 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16050 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16051 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16051 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16048 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:16:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16049 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:17:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16052 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16053 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:39 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16052 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:39 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16053 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:39 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16054 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:39 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16055 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:52 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16051 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:52 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16052 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:52 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16056 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:52 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16057 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 280
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:52 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16053 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:52 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16054 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:57:52 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16055 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16050 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16051 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16052 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16053 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16054 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16055 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16056 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16057 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16058 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16049 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16050 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16056 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16057 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16058 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15998,Z=16059 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16051 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16052 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16053 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16054 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:32 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16055 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15994,Z=16056 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15995,Z=16057 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15996,Z=16058 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16048 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16049 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15997,Z=16059 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16050 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16051 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16052 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16053 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16054 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 20:58:40 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15993,Z=16055 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:39 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15992,Z=16034 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:39 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15992,Z=16035 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:39 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15992,Z=16036 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:58 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15991,Z=16026 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:58 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15991,Z=16027 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:58 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15991,Z=16028 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:58 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15991,Z=16029 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:58 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15991,Z=16030 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:58 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15991,Z=16031 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:58 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15991,Z=16032 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:04:58 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15991,Z=16033 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:05:14 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15990,Z=16026 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 280
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:05:14 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15990,Z=16027 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:05:14 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15990,Z=16028 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:05:14 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15990,Z=16029 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:05:14 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15990,Z=16030 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:05:14 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15990,Z=16031 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:05:30 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15989,Z=16027 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
9.2.2026 21:05:30 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=15989,Z=16028 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:26:45 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16045,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:26:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16045,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:26:49 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16046,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:26:53 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16046,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:16 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16045,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:16 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16046,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:34 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16055,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 280
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:34 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16055,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:34 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16055,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:34 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16055,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:34 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16055,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:37 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16045,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:37 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16046,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:37 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16054,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16055,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:38 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16054,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16054,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16055,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:27:42 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15974 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15975 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15976 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15977 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15978 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15979 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16054,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16055,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:23 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:26 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15974 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16055,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15975 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15976 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 123
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15977 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15978 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15979 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:27 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15980 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:28 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15981 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15974 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15975 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15976 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15977 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15978 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15979 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15980 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:31 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15981 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15974 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15975 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15976 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15977 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15978 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15979 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15980 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15981 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:59 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15982 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:29:59 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15982 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15974 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15975 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15976 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15977 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15978 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15979 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15980 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15981 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15982 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:04 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15983 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:34 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15983 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15984 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:30:50 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15984 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:01 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15985 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:01 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15985 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15986 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15974 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15975 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15976 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15977 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15978 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15979 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15980 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15981 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15982 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:31:15 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15983 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:08 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15984 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15974 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15975 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15976 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15977 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15978 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15979 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15980 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15981 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15982 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15987 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15986 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15983 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:09 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15984 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15985 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15988 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15974 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15975 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15976 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15977 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15978 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15979 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15987 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Rivers.NewGenTerra.GetInterpolatedOctaves(Single[] landformWeights, Double[]& octaveAmplitudes, Double[]& octaveThresholds) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 698
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15980 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15986 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15981 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15982 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15983 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15984 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:24 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:33 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:33 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:33 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:33 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:33 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:33 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:33 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15974 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15975 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15976 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15977 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15978 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15979 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15980 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15981 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:36 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15982 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:54 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:54 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:54 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:54 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:54 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:54 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:54 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:54 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:54 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15967 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15968 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15969 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15970 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15971 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15972 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15965 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15966 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15973 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15974 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15975 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15976 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15977 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15978 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15979 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15980 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:33:55 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15981 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15964 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:00 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16054,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 280
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16055,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 279
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16056,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 278
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16067,Z=15963 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16064,Z=15960 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16065,Z=15961 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16066,Z=15962 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16057,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16058,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16059,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:06 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16060,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:07 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16061,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:07 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16062,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
14.2.2026 18:34:07 [Worldgen] An error was thrown in pass Terrain when generating chunk column X=16063,Z=15959 in world 'Foggy Hermit Valley' with seed 313687447
Exception System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.HalfBiLerp(WeightedIndex[] left, WeightedIndex[] right, Single lerp, Single[] output, Single overallweight) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 227
at Vintagestory.ServerMods.LerpedWeightedIndex2DMap.WeightsAt(Single x, Single z, Single[] output) in C:\Users\Tyron\Documents\vintagestory\game\VSSurvivalMod\Systems\WorldGen\Standard\Datastructures\LerpedWeightedIndex2DMap.cs:line 115
at Rivers.NewGenTerra.Generate(IServerChunk[] chunks, Int32 chunkX, Int32 chunkZ) in D:\VSProjects\Rivers\Rivers-Mod\Rivers\src\WorldGenSystems\NewGenTerra.cs:line 277
at Vintagestory.Server.ServerSystemSupplyChunks.runGenerators(ChunkColumnLoadRequest chunkRequest, Int32 forPass) in C:\Users\Tyron\Documents\vintagestory\game\VintagestoryLib\Server\Systems\World\LoadThread\SupplyChunks.cs:line 1936
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment