Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Actually do what I said for min/max Y in HeightmapProcessor
Dieser Commit ist enthalten in:
Ursprung
2c0c57ec4f
Commit
a923c112ee
@ -55,8 +55,7 @@ public class HeightmapProcessor implements IBatchProcessor {
|
|||||||
int skip = 0;
|
int skip = 0;
|
||||||
int allSkipped = (1 << TYPES.length) - 1; // lowest types.length bits are set
|
int allSkipped = (1 << TYPES.length) - 1; // lowest types.length bits are set
|
||||||
layer:
|
layer:
|
||||||
//int layer = maxY >> 4; layer >= minY >> 4; layer--
|
for (int layer = maxY >> 4; layer >= minY >> 4; layer--) {
|
||||||
for (int layer = set.getMaxSectionPosition(); layer >= set.getMinSectionPosition() >> 4; layer--) {
|
|
||||||
boolean hasSectionSet = set.hasSection(layer);
|
boolean hasSectionSet = set.hasSection(layer);
|
||||||
boolean hasSectionGet = get.hasSection(layer);
|
boolean hasSectionGet = get.hasSection(layer);
|
||||||
if (!(hasSectionSet || hasSectionGet)) {
|
if (!(hasSectionSet || hasSectionGet)) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren