9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 19:19:07 +00:00

THE SUPER DUPER COOL BUT TOTALLY NOT STABLE THING THATS NOT READY YET...

This commit is contained in:
Daniel Mills
2021-07-14 04:51:50 -04:00
parent 6ca6fc6989
commit ec47ca1983
14 changed files with 423 additions and 9 deletions

View File

@@ -85,6 +85,11 @@ public class LinkedTerrainChunk implements TerrainChunk {
biome3D.setBiome(x, 0, z, bio);
}
public BiomeGrid getRawBiome()
{
return storage;
}
@Override
public void setBiome(int x, int y, int z, Biome bio) {
if (storage != null) {

View File

@@ -0,0 +1,13 @@
package com.volmit.iris.util;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Retention(RUNTIME)
@Target({PARAMETER, TYPE, FIELD})
public @interface RegistryListBiomeDownfallType {
}