Skip to content

Commit

Permalink
cfgで変更可能な項目の追加: commit忘れ
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKono committed Feb 6, 2025
1 parent 75281db commit 1689cdd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
import com.github.gtexpert.gtbm.module.Modules;

@TModule(
moduleID = Modules.MODULE_FORESTRY,
containerID = ModValues.MODID,
modDependencies = Mods.Names.FORESTRY,
name = "GTBeesMatrix Forestry For Minecraft Integration",
description = "Forestry For Minecraft Integration Module")
moduleID = Modules.MODULE_FORESTRY,
containerID = ModValues.MODID,
modDependencies = Mods.Names.FORESTRY,
name = "GTBeesMatrix Forestry For Minecraft Integration",
description = "Forestry For Minecraft Integration Module")
public class ForestryModule extends GTBMIntegrationSubmodule {

@Override
Expand All @@ -27,6 +27,7 @@ public void postInit(FMLPostInitializationEvent event) {
FFMItemRecipe.init();
FFMMaterialsRecipe.init();
FFMToolRecipe.init();
FFMCraftingRecipe.init();

CarpenterLoader.initBase();
CarpenterLoader.initMode();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.github.gtexpert.gtbm.integration.gendustry;

import com.github.gtexpert.gtbm.integration.gendustry.recipes.GendustryCraftingRecipe;
import net.minecraft.block.Block;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
Expand All @@ -14,11 +15,11 @@
import com.github.gtexpert.gtbm.module.Modules;

@TModule(
moduleID = Modules.MODULE_GENDUSTRY,
containerID = ModValues.MODID,
modDependencies = { Mods.Names.FORESTRY, Mods.Names.GENDUSTRY },
name = "GTBeesMatrix Gendustry For Minecraft Integration",
description = "Gendustry Integration Module")
moduleID = Modules.MODULE_GENDUSTRY,
containerID = ModValues.MODID,
modDependencies = { Mods.Names.FORESTRY, Mods.Names.GENDUSTRY },
name = "GTBeesMatrix Gendustry For Minecraft Integration",
description = "Gendustry Integration Module")
public class GendustryModule extends GTBMIntegrationSubmodule {

@Override
Expand All @@ -30,5 +31,6 @@ public void registerBlocks(RegistryEvent.Register<Block> event) {
public void postInit(FMLPostInitializationEvent event) {
GendustryItemsRecipe.init();
GendustryBlocksRecipe.init();
GendustryCraftingRecipe.init();
}
}

0 comments on commit 1689cdd

Please sign in to comment.