Better Fabric biome API support

This commit is contained in:
paulevsGitch 2021-08-15 01:42:51 +03:00
parent 67be2ce342
commit 895b605523
6 changed files with 103 additions and 66 deletions

View file

@ -0,0 +1,15 @@
package ru.bclib.world.biomes;
import com.google.common.collect.Maps;
import com.google.common.collect.Sets;
import net.minecraft.resources.ResourceKey;
import net.minecraft.world.level.biome.Biome;
import java.util.Map;
import java.util.Set;
public class FabricBiomesData {
public static final Map<ResourceKey<Biome>, Float> END_LAND_BIOMES = Maps.newHashMap();
public static final Map<ResourceKey<Biome>, Float> END_VOID_BIOMES = Maps.newHashMap();
public static final Set<ResourceKey<Biome>> NETHER_BIOMES = Sets.newHashSet();
}