Do biome dictionary and villager type registration earlier. Closes #1529

This commit is contained in:
Adubbz 2020-01-19 10:42:23 +11:00
parent d116ef13ee
commit 1421f9ef8b

View file

@ -44,8 +44,6 @@ public class ModBiomes
public static void setup() public static void setup()
{ {
worldType = new WorldTypeBOP(); worldType = new WorldTypeBOP();
registerBiomeDictionaryTags();
registerVillagerTypes();
} }
@SubscribeEvent @SubscribeEvent
@ -151,6 +149,9 @@ public class ModBiomes
registerIslandBiome(tropics, BOPClimates.SUBTROPICAL, 75); registerIslandBiome(tropics, BOPClimates.SUBTROPICAL, 75);
registerIslandBiome(tropics, BOPClimates.TROPICAL, 50); registerIslandBiome(tropics, BOPClimates.TROPICAL, 50);
registerIslandBiome(tropics, BOPClimates.HOT_DESERT, 50); registerIslandBiome(tropics, BOPClimates.HOT_DESERT, 50);
registerBiomeDictionaryTags();
registerVillagerTypes();
} }
private static void registerBiomeDictionaryTags() private static void registerBiomeDictionaryTags()