-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBotaniaModule.java
More file actions
25 lines (21 loc) · 940 Bytes
/
BotaniaModule.java
File metadata and controls
25 lines (21 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.github.gtexpert.gtwp.integration.botania;
import net.minecraft.item.crafting.IRecipe;
import net.minecraftforge.event.RegistryEvent;
import com.github.gtexpert.gtwp.api.ModValues;
import com.github.gtexpert.gtwp.api.modules.TModule;
import com.github.gtexpert.gtwp.api.util.Mods;
import com.github.gtexpert.gtwp.integration.GTWPIntegrationSubmodule;
import com.github.gtexpert.gtwp.integration.botania.recipes.BotaniaWoodRecipe;
import com.github.gtexpert.gtwp.module.Modules;
@TModule(
moduleID = Modules.MODULE_BOTANIA,
containerID = ModValues.MODID,
modDependencies = Mods.Names.BOTANIA,
name = "GTWoodProcessing Botania Integration",
description = "Botania Integration Module")
public class BotaniaModule extends GTWPIntegrationSubmodule {
@Override
public void registerRecipesNormal(RegistryEvent.Register<IRecipe> event) {
BotaniaWoodRecipe.init();
}
}