This commit is contained in:
gigabit101 2015-07-24 22:29:00 +01:00
parent 5636dc373f
commit bac2cdcbc6
35 changed files with 94 additions and 34 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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