Open
Description
Line 1443 in e61f905
"TODO: Check 1.7" - I did that.
The game checks the chunk coords at 8 8 and NOT 9 9 whether the chunk has a viable biome at the structure position.
As far as I can tell those extra lines of code should fix it:
Line 1542 in e61f905
if (g->mc <= MC_1_15)
{
g->entry = &g->ls.layers[L_VORONOI_1];
if (g->mc <= MC_1_8_9)
{
sampleX = chunkX * 16 + 8;
sampleZ = chunkZ * 16 + 8;
}
else
{
sampleX = chunkX * 16 + 9;
sampleZ = chunkZ * 16 + 9;
}
}
Metadata
Metadata
Assignees
Labels
No labels