mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
24 lines
586 B
Java
24 lines
586 B
Java
package com.hbm.handler.nei;
|
|
|
|
import com.hbm.blocks.ModBlocks;
|
|
import com.hbm.items.machine.ItemRTGPellet;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class RTGRecipeHandler extends NEIUniversalHandler {
|
|
|
|
public RTGRecipeHandler() {
|
|
super("RTG", new ItemStack[] {
|
|
new ItemStack(ModBlocks.machine_rtg_grey),
|
|
new ItemStack(ModBlocks.machine_difurnace_rtg_off),
|
|
new ItemStack(ModBlocks.machine_industrial_generator),
|
|
new ItemStack(ModBlocks.machine_rtg_furnace_off)
|
|
}, ItemRTGPellet.getRecipeMap());
|
|
}
|
|
|
|
@Override
|
|
public String getKey() {
|
|
return "ntmRTG";
|
|
}
|
|
}
|