9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-30 12:29:20 +00:00
This commit is contained in:
Daniel Mills
2020-08-16 02:23:53 -04:00
parent 86be84b015
commit d89371a279
6 changed files with 639 additions and 412 deletions

View File

@@ -265,7 +265,7 @@ public class IrisBiome extends IrisRegistrant implements IRare
for(int i = 0; i < maxDepth; i++)
{
int offset = (getMaxHeight() - height) - i;
int offset = (255 - height) - i;
int index = offset % data.size();
real.add(data.get(index < 0 ? 0 : index));
}