2015-04-17 00:15:33 +01:00
|
|
|
package techreborn.compat.recipes;
|
|
|
|
|
2015-11-23 14:40:30 +00:00
|
|
|
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
|
|
|
|
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
|
|
|
|
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
|
|
|
import net.minecraftforge.fml.common.event.FMLServerStartingEvent;
|
2015-06-12 18:40:08 +01:00
|
|
|
import techreborn.compat.ICompatModule;
|
|
|
|
|
|
|
|
public class RecipesThermalExpansion implements ICompatModule {
|
|
|
|
|
2015-08-09 11:05:32 +01:00
|
|
|
@Override
|
|
|
|
public void preInit(FMLPreInitializationEvent event) {
|
2015-06-12 18:40:08 +01:00
|
|
|
|
2015-08-09 11:05:32 +01:00
|
|
|
}
|
2015-06-12 18:40:08 +01:00
|
|
|
|
2015-08-09 11:05:32 +01:00
|
|
|
@Override
|
|
|
|
public void init(FMLInitializationEvent event) {
|
|
|
|
// TODO remove basic machine frame recipe
|
|
|
|
// TODO replace iron in recipe to steel
|
|
|
|
// TODO add industrial blast furnace recipes for Enderium and Fluxed Electrum
|
|
|
|
}
|
2015-06-12 18:40:08 +01:00
|
|
|
|
2015-08-09 11:05:32 +01:00
|
|
|
@Override
|
|
|
|
public void postInit(FMLPostInitializationEvent event) {
|
2015-06-12 18:40:08 +01:00
|
|
|
|
2015-08-09 11:05:32 +01:00
|
|
|
}
|
2015-06-12 18:40:08 +01:00
|
|
|
|
2015-08-09 11:05:32 +01:00
|
|
|
@Override
|
|
|
|
public void serverStarting(FMLServerStartingEvent event) {
|
2015-06-12 18:40:08 +01:00
|
|
|
|
2015-08-09 11:05:32 +01:00
|
|
|
}
|
2015-04-17 00:15:33 +01:00
|
|
|
}
|