Unfuck the decorator stacks

This commit is contained in:
cyberpwn
2021-08-18 23:26:30 -04:00
parent 7f7397f684
commit b19a7d45d8
3 changed files with 5 additions and 5 deletions

View File

@@ -107,7 +107,10 @@ public class IrisDecorator {
return stackMin;
}
return getHeightGenerator(rng, data).fit(stackMin, stackMax, x / heightVariance.getZoom(), z / heightVariance.getZoom()) + 1;
return getHeightGenerator(rng, data)
.fit(stackMin, stackMax,
x / heightVariance.getZoom(),
z / heightVariance.getZoom()) + 1;
}
public CNG getHeightGenerator(RNG rng, IrisData data) {