Change Outer End World Size

a fixed size of 54x54 chunks instead of going by world size
This commit is contained in:
DeadVoxelx
2026-04-05 15:10:24 -04:00
committed by GitHub
parent 112ec8ecd6
commit a29933f3ef

View File

@@ -11,7 +11,7 @@
TheOuterEndLevelRandomLevelSource::TheOuterEndLevelRandomLevelSource(Level *level, int64_t seed)
{
m_XZSize = level->getLevelData()->getXZSize();
m_XZSize = END_LEVEL_MIN_WIDTH;
this->level = level;