Class NoneBiomeModifier

java.lang.Object
net.minecraftforge.common.world.NoneBiomeModifier
All Implemented Interfaces:
BiomeModifier

public class NoneBiomeModifier extends Object implements BiomeModifier
Noop biome modifier. Can be used in a biome modifier json with "type": "forge:none".
  • Field Details

  • Constructor Details

    • NoneBiomeModifier

      public NoneBiomeModifier()
  • Method Details

    • modify

      public void modify(Holder<Biome> biome, BiomeModifier.Phase phase, ModifiableBiomeInfo.BiomeInfo.Builder builder)
      Description copied from interface: BiomeModifier
      Modifies the information via the provided biome builder. Allows mob spawns and world-gen features to be added or removed, and climate and client effects to be modified.
      Specified by:
      modify in interface BiomeModifier
      Parameters:
      biome - the named biome being modified (with original data readable).
      phase - biome modification phase. Biome modifiers apply in each phase in order of the enum constants.
      builder - mutable biome info builder. Apply changes to this.
    • codec

      public com.mojang.serialization.Codec<? extends BiomeModifier> codec()
      Specified by:
      codec in interface BiomeModifier
      Returns:
      the codec which serializes and deserializes this biome modifier