From e2c8284bc5af07d206995559f28b1348282b2403 Mon Sep 17 00:00:00 2001 From: drcrazy Date: Wed, 19 Dec 2018 18:22:45 +0300 Subject: [PATCH] Added config for Rubber Tree plantations in villages. Closes #1639 --- src/main/java/techreborn/Core.java | 21 ++++++++++++++----- .../techreborn/config/ConfigTechReborn.java | 4 ++++ 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/src/main/java/techreborn/Core.java b/src/main/java/techreborn/Core.java index eb5d83609..730ea982b 100644 --- a/src/main/java/techreborn/Core.java +++ b/src/main/java/techreborn/Core.java @@ -54,6 +54,7 @@ import techreborn.client.GuiHandler; import techreborn.command.TechRebornDevCommand; import techreborn.compat.CompatManager; import techreborn.compat.ICompatModule; +import techreborn.config.ConfigTechReborn; import techreborn.dispenser.BehaviorDispenseScrapbox; import techreborn.entities.EntityNukePrimed; import techreborn.events.BlockBreakHandler; @@ -135,23 +136,27 @@ public class Core { @Mod.EventHandler public void init(FMLInitializationEvent event) throws IllegalAccessException, InstantiationException { - // Registers Chest Loot + ModLoot.init(); MinecraftForge.EVENT_BUS.register(new ModLoot()); - // Sounds ModSounds.init(); + // Compat for (ICompatModule compatModule : CompatManager.INSTANCE.compatModules) { compatModule.init(event); } + // Client only init, needs to be done before parts system proxy.init(event); + // WorldGen worldGen.load(); GameRegistry.registerWorldGenerator(worldGen, 0); GameRegistry.registerWorldGenerator(new OilLakeGenerator(), 0); + // Register Gui Handler NetworkRegistry.INSTANCE.registerGuiHandler(INSTANCE, new GuiHandler()); + // Event busses MinecraftForge.EVENT_BUS.register(new StackWIPHandler()); MinecraftForge.EVENT_BUS.register(new BlockBreakHandler()); @@ -160,10 +165,16 @@ public class Core { MinecraftForge.EVENT_BUS.register(new MultiblockServerTickHandler()); MinecraftForge.EVENT_BUS.register(new TRTickHandler()); MinecraftForge.EVENT_BUS.register(worldGen.retroGen); + //Village stuff - VillagerRegistry.instance().registerVillageCreationHandler(new VillagePlantaionHandler()); - MapGenStructureIO.registerStructureComponent(VillageComponentRubberPlantaion.class, new ResourceLocation(ModInfo.MOD_ID, "rubberplantation").toString()); - ModLootTables.CHESTS_RUBBER_PLANTATION.toString(); //Done to make it load, then it will be read from disk + if (ConfigTechReborn.enableRubberTreePlantation) { + VillagerRegistry.instance().registerVillageCreationHandler(new VillagePlantaionHandler()); + MapGenStructureIO.registerStructureComponent(VillageComponentRubberPlantaion.class, + new ResourceLocation(ModInfo.MOD_ID, "rubberplantation").toString()); + // Done to make it load, then it will be read from disk + ModLootTables.CHESTS_RUBBER_PLANTATION.toString(); + } + // Scrapbox if (BehaviorDispenseScrapbox.dispenseScrapboxes) { BlockDispenser.DISPENSE_BEHAVIOR_REGISTRY.putObject(ModItems.SCRAP_BOX, new BehaviorDispenseScrapbox()); diff --git a/src/main/java/techreborn/config/ConfigTechReborn.java b/src/main/java/techreborn/config/ConfigTechReborn.java index b913c9922..dae03730e 100644 --- a/src/main/java/techreborn/config/ConfigTechReborn.java +++ b/src/main/java/techreborn/config/ConfigTechReborn.java @@ -131,4 +131,8 @@ public class ConfigTechReborn { @ConfigRegistry(config = "world", category = "loot", key = "enableEndLoot", comment = "When true TechReborn will add ingots, machine frames and circuits to The End loot chests.") public static boolean enableEndLoot = true; + + @ConfigRegistry(config = "world", category = "village", key = "enableRubberTreePlantation", comment = "When true TechReborn will add Rubber tree farm to villages.") + public static boolean enableRubberTreePlantation = true; + }