From 9fe9c2a9dd992c8947e19926fd759ba746f20a19 Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Mon, 11 Jan 2021 09:53:16 -0500 Subject: [PATCH] Jigsaw structure registry with biomes --- src/main/java/com/volmit/iris/object/IrisBiome.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/com/volmit/iris/object/IrisBiome.java b/src/main/java/com/volmit/iris/object/IrisBiome.java index 25cfb6797..cd100bae3 100644 --- a/src/main/java/com/volmit/iris/object/IrisBiome.java +++ b/src/main/java/com/volmit/iris/object/IrisBiome.java @@ -130,6 +130,11 @@ public class IrisBiome extends IrisRegistrant implements IRare @Desc("List any biome names (file names without.json) here as children. Portions of this biome can sometimes morph into their children. Iris supports cyclic relationships such as A > B > A > B. Iris will stop checking 9 biomes down the tree.") private KList children = new KList<>(); + @ArrayType(min = 1, type = IrisJigsawStructurePlacement.class) + @DontObfuscate + @Desc("Jigsaw structures") + private KList jigsaw = new KList<>(); + @RegistryListBiome @DontObfuscate @Desc("The carving biome. If specified the biome will be used when under a carving instead of this current biome.")