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:
@@ -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) {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user