From 82ac92dfeded241f1fedc1d58bf2828512de3d9d Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Sun, 7 Mar 2021 11:01:58 +0100 Subject: [PATCH] Remove biome specific fluid type --- src/main/java/com/volmit/iris/object/IrisBiome.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/volmit/iris/object/IrisBiome.java b/src/main/java/com/volmit/iris/object/IrisBiome.java index 1a2fa9858..2094a6b19 100644 --- a/src/main/java/com/volmit/iris/object/IrisBiome.java +++ b/src/main/java/com/volmit/iris/object/IrisBiome.java @@ -32,9 +32,11 @@ public class IrisBiome extends IrisRegistrant implements IRare @Desc("This is the human readable name for this biome. This can and should be different than the file name. This is not used for loading biomes in other objects.") private String name = "A Biome"; + /* Needs to be implemented but it's not @DontObfuscate - @Desc("The type of fluid if this biome is underwater. To 'defer' this value to whatever the parent dimension fluid type is, use an emtpy string.") - private String fluidType = ""; + @Desc("The palette of blocks for 'water' in this biome (overwrites dimension)") + private IrisMaterialPalette fluidPalette = new IrisMaterialPalette().qclear().qadd("void_air"); + */ @DontObfuscate @Desc("Entity spawns to override or add to this biome. Anytime an entity spawns, it has a chance to be replaced as one of these overrides.")