mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-08 08:46:21 +00:00
Cleanup
This commit is contained in:
@@ -450,15 +450,13 @@ public class IrisBiome extends IrisRegistrant implements IRare {
|
||||
|
||||
int gg = 0;
|
||||
|
||||
for(IrisObjectPlacement i : getObjects())
|
||||
{
|
||||
for(IrisObject j : data.getObjectLoader().loadAll(i.getPlace()))
|
||||
{
|
||||
for (IrisObjectPlacement i : getObjects()) {
|
||||
for (IrisObject j : data.getObjectLoader().loadAll(i.getPlace())) {
|
||||
gg = Math.max(gg, j.getH());
|
||||
}
|
||||
}
|
||||
|
||||
return maxHeight + gg+3;
|
||||
return maxHeight + gg + 3;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -49,8 +49,7 @@ public class IrisStyledRange {
|
||||
return min;
|
||||
}
|
||||
|
||||
if(style.isFlat())
|
||||
{
|
||||
if (style.isFlat()) {
|
||||
return M.lerp(min, max, 0.5);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user