From 71affb0a704a8797a386b11a9368a5cc8d8ffc2a Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Tue, 12 Jan 2021 05:41:46 -0500 Subject: [PATCH] Support features on entire jigsaw structures --- src/main/java/com/volmit/iris/object/IrisJigsawStructure.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/volmit/iris/object/IrisJigsawStructure.java b/src/main/java/com/volmit/iris/object/IrisJigsawStructure.java index ddfb82323..1bd276963 100644 --- a/src/main/java/com/volmit/iris/object/IrisJigsawStructure.java +++ b/src/main/java/com/volmit/iris/object/IrisJigsawStructure.java @@ -31,6 +31,10 @@ public class IrisJigsawStructure extends IrisRegistrant @Desc("The maximum pieces that can step out from the center piece") private int maxDepth = 9; + @Desc("Add a noise feature to this village") + @DontObfuscate + private IrisFeature feature = null; + @DontObfuscate @Desc("If set to true, iris will look for any pieces with only one connector in valid pools for edge connectors and attach them to 'terminate' the paths/piece connectors. Essentially it caps off ends. For example in a village, Iris would add houses to the ends of roads where possible. For terminators to be selected, they can only have one connector or they wont be chosen.") private boolean terminate = true;