closes #55
This commit is contained in:
parent
5636dc373f
commit
bac2cdcbc6
35 changed files with 94 additions and 34 deletions
|
@ -5,6 +5,7 @@ import codechicken.nei.recipe.TemplateRecipeHandler;
|
|||
import net.minecraft.client.gui.inventory.GuiContainer;
|
||||
import techreborn.api.recipe.IBaseRecipeType;
|
||||
import techreborn.client.gui.GuiAlloySmelter;
|
||||
import techreborn.lib.Reference;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -26,7 +27,7 @@ public class AlloySmelterRecipeHandler extends GenericRecipeHander implements IN
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "alloySmelterRecipe";
|
||||
return Reference.alloySmelteRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -5,6 +5,7 @@ import codechicken.nei.recipe.TemplateRecipeHandler;
|
|||
import net.minecraft.client.gui.inventory.GuiContainer;
|
||||
import techreborn.api.recipe.IBaseRecipeType;
|
||||
import techreborn.client.gui.GuiAssemblingMachine;
|
||||
import techreborn.lib.Reference;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -32,7 +33,7 @@ public class AssemblingMachineRecipeHandler extends GenericRecipeHander implemen
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "assemblingMachineRecipe";
|
||||
return Reference.assemblingMachineRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -7,6 +7,7 @@ import net.minecraft.client.gui.inventory.GuiContainer;
|
|||
import techreborn.api.recipe.IBaseRecipeType;
|
||||
import techreborn.api.recipe.machines.BlastFurnaceRecipe;
|
||||
import techreborn.client.gui.GuiBlastFurnace;
|
||||
import techreborn.lib.Reference;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -39,7 +40,7 @@ public class BlastFurnaceRecipeHandler extends GenericRecipeHander implements IN
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "blastFurnaceRecipe";
|
||||
return Reference.blastFurnaceRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -5,6 +5,7 @@ import codechicken.nei.recipe.TemplateRecipeHandler;
|
|||
import net.minecraft.client.gui.inventory.GuiContainer;
|
||||
import techreborn.api.recipe.IBaseRecipeType;
|
||||
import techreborn.client.gui.GuiCentrifuge;
|
||||
import techreborn.lib.Reference;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -46,7 +47,7 @@ public class CentrifugeRecipeHandler extends GenericRecipeHander implements INei
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "centrifugeRecipe";
|
||||
return Reference.centrifugeRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -5,6 +5,7 @@ import codechicken.nei.recipe.TemplateRecipeHandler;
|
|||
import net.minecraft.client.gui.inventory.GuiContainer;
|
||||
import techreborn.api.recipe.IBaseRecipeType;
|
||||
import techreborn.client.gui.GuiChemicalReactor;
|
||||
import techreborn.lib.Reference;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -32,7 +33,7 @@ public class ChemicalReactorRecipeHandler extends GenericRecipeHander implements
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "chemicalReactorRecipe";
|
||||
return Reference.chemicalReactorRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -11,6 +11,7 @@ import techreborn.api.recipe.IBaseRecipeType;
|
|||
import techreborn.api.recipe.machines.GrinderRecipe;
|
||||
import techreborn.client.GuiUtil;
|
||||
import techreborn.client.gui.GuiGrinder;
|
||||
import techreborn.lib.Reference;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -54,7 +55,7 @@ public class GrinderRecipeHandler extends GenericRecipeHander implements INeiBas
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "grinderRecipe";
|
||||
return Reference.grinderRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -5,6 +5,7 @@ import codechicken.nei.recipe.TemplateRecipeHandler;
|
|||
import net.minecraft.client.gui.inventory.GuiContainer;
|
||||
import techreborn.api.recipe.IBaseRecipeType;
|
||||
import techreborn.client.gui.GuiImplosionCompressor;
|
||||
import techreborn.lib.Reference;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -37,7 +38,7 @@ public class ImplosionCompressorRecipeHandler extends GenericRecipeHander implem
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "implosionCompressorRecipe";
|
||||
return Reference.implosionCompressorRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -5,6 +5,7 @@ import codechicken.nei.recipe.TemplateRecipeHandler;
|
|||
import net.minecraft.client.gui.inventory.GuiContainer;
|
||||
import techreborn.api.recipe.IBaseRecipeType;
|
||||
import techreborn.client.gui.GuiIndustrialElectrolyzer;
|
||||
import techreborn.lib.Reference;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -45,7 +46,7 @@ public class IndustrialElectrolyzerRecipeHandler extends GenericRecipeHander imp
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "industrialElectrolyzerRecipe";
|
||||
return Reference.industrialElectrolyzerRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -11,6 +11,7 @@ import techreborn.api.recipe.IBaseRecipeType;
|
|||
import techreborn.api.recipe.machines.IndustrialSawmillRecipe;
|
||||
import techreborn.client.GuiUtil;
|
||||
import techreborn.client.gui.GuiIndustrialSawmill;
|
||||
import techreborn.lib.Reference;
|
||||
|
||||
import java.awt.*;
|
||||
import java.util.List;
|
||||
|
@ -47,7 +48,7 @@ public class IndustrialSawmillRecipeHandler extends GenericRecipeHander implemen
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "industrialSawmillRecipe";
|
||||
return Reference.industrialSawmillRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -5,6 +5,7 @@ import codechicken.nei.recipe.TemplateRecipeHandler;
|
|||
import net.minecraft.client.gui.inventory.GuiContainer;
|
||||
import techreborn.api.recipe.IBaseRecipeType;
|
||||
import techreborn.client.gui.GuiLathe;
|
||||
import techreborn.lib.Reference;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -27,7 +28,7 @@ public class LatheRecipeHandler extends GenericRecipeHander implements INeiBaseR
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "latheRecipe";
|
||||
return Reference.latheRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -5,6 +5,7 @@ import codechicken.nei.recipe.TemplateRecipeHandler;
|
|||
import net.minecraft.client.gui.inventory.GuiContainer;
|
||||
import techreborn.api.recipe.IBaseRecipeType;
|
||||
import techreborn.client.gui.GuiPlateCuttingMachine;
|
||||
import techreborn.lib.Reference;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -26,7 +27,7 @@ public class PlateCuttingMachineRecipeHandler extends GenericRecipeHander implem
|
|||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
return "plateCuttingMachineRecipe";
|
||||
return Reference.plateCuttingMachineRecipe;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue