TU43 Bug fixes

Fixed the following:
Cape behavior,
Magma block spawn
Fossil Spawn
Igloo Spawn / other issues
Classic Crafting
Server-sided loot table fix
This commit is contained in:
Tranqlmao
2026-07-13 16:59:00 -04:00
parent 87dca773f4
commit 680f539f30
9 changed files with 68 additions and 14 deletions
+1 -1
View File
@@ -491,7 +491,7 @@ void HellRandomLevelSource::postProcess(ChunkSource *parent, int xt, int zt)
for (int i = 0; i < 4; i++)
{
int x = xo + pprandom->nextInt(16);
int y = pprandom->nextInt(9) + 27;
int y = pprandom->nextInt(10) + 27;
int z = zo + pprandom->nextInt(16);
magmaFeature.place(level, pprandom, x, y, z);
}