minor FullDataToRenderDataTransformer refactor
This commit is contained in:
+4
-2
@@ -184,9 +184,11 @@ public class FullDataToRenderDataTransformer
|
||||
{
|
||||
int baseX = pos.getMinCornerLodPos().getCornerBlockPos().x;
|
||||
int baseZ = pos.getMinCornerLodPos().getCornerBlockPos().z;
|
||||
for (int x = 0; x < pos.getWidthCountForLowerDetailedSection(dataDetail); x++)
|
||||
|
||||
int width = pos.getWidthCountForLowerDetailedSection(dataDetail);
|
||||
for (int x = 0; x < width; x++)
|
||||
{
|
||||
for (int z = 0; z < pos.getWidthCountForLowerDetailedSection(dataDetail); z++)
|
||||
for (int z = 0; z < width; z++)
|
||||
{
|
||||
throwIfThreadInterrupted();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user