Remove biome specific fluid type

This commit is contained in:
CocoTheOwner 2021-03-07 11:01:58 +01:00
parent 2643eb2e37
commit 82ac92dfed

View File

@ -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.") @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"; private String name = "A Biome";
/* Needs to be implemented but it's not
@DontObfuscate @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.") @Desc("The palette of blocks for 'water' in this biome (overwrites dimension)")
private String fluidType = ""; private IrisMaterialPalette fluidPalette = new IrisMaterialPalette().qclear().qadd("void_air");
*/
@DontObfuscate @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.") @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.")