Advertisement
jayhillx

setupBiomes

Dec 9th, 2020 (edited)
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. public static void setupBiomes() {
  2. BiomeManager.addBiome(BiomeManager.BiomeType.WARM, new BiomeManager.BiomeEntry(STRAWBERRY_FIELD.get(), Config.COMMON.strawberryFieldWeight.get()));
  3. BiomeManager.addBiome(BiomeManager.BiomeType.COOL, new BiomeManager.BiomeEntry(LAVENDER_MEADOW.get(), Config.COMMON.lavenderMeadowWeight.get()));
  4.  
  5. BiomeDictionary.addTypes(STRAWBERRY_FIELD.get(), BiomeDictionary.Type.PLAINS, BiomeDictionary.Type.OVERWORLD);
  6. BiomeDictionary.addTypes(LAVENDER_MEADOW.get(), BiomeDictionary.Type.PLAINS, BiomeDictionary.Type.OVERWORLD);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement