Fix missing names in JEI (#1149)

* Fix missing names in GUI machines

* Fix missing names in JEI
This commit is contained in:
Nourepide 2017-06-23 17:05:44 +04:00 committed by Modmuss50
parent 2ae312581f
commit c8dfcb3ba5
12 changed files with 12 additions and 12 deletions

View file

@ -48,7 +48,7 @@ public class BlastFurnaceRecipeCategory extends BlankRecipeCategory<BlastFurnace
public BlastFurnaceRecipeCategory(IGuiHelper guiHelper) {
background = guiHelper.createDrawable(texture, 0, 94, 120, 78);
title = I18n.translateToLocal("tile.techreborn.blastfurnace.name");
title = I18n.translateToLocal("tile.techreborn:industrial_blast_furnace.name");
}
@Override

View file

@ -47,7 +47,7 @@ public class CentrifugeRecipeCategory extends BlankRecipeCategory<CentrifugeReci
public CentrifugeRecipeCategory(IGuiHelper guiHelper) {
background = guiHelper.createDrawable(texture, 0, 0, 104, 62);
title = I18n.translateToLocal("tile.techreborn.centrifuge.name");
title = I18n.translateToLocal("tile.techreborn:industrial_centrifuge.name");
}
@Override

View file

@ -48,7 +48,7 @@ public class ChemicalReactorRecipeCategory extends BlankRecipeCategory<ChemicalR
public ChemicalReactorRecipeCategory(IGuiHelper guiHelper) {
background = guiHelper.createDrawable(texture, 0, 172, 116, 52);
title = I18n.translateToLocal("tile.techreborn.chemicalreactor.name");
title = I18n.translateToLocal("tile.techreborn:chemical_reactor.name");
}
@Override

View file

@ -48,7 +48,7 @@ public class CompressorRecipeCategory extends BlankRecipeCategory<CompressorReci
public CompressorRecipeCategory(IGuiHelper guiHelper) {
background = guiHelper.createDrawable(texture, 0, 62, 74, 32);
title = I18n.translateToLocal("tile.techreborn.compressor.name");
title = I18n.translateToLocal("tile.techreborn:compressor.name");
}
@Override

View file

@ -48,7 +48,7 @@ public class ExtractorRecipeCategory extends BlankRecipeCategory<ExtractorRecipe
public ExtractorRecipeCategory(IGuiHelper guiHelper) {
background = guiHelper.createDrawable(texture, 0, 62, 74, 32);
title = I18n.translateToLocal("tile.techreborn.extractor.name");
title = I18n.translateToLocal("tile.techreborn:extractor.name");
}
@Override

View file

@ -51,7 +51,7 @@ public class FusionReactorRecipeCategory extends BlankRecipeCategory<FusionReact
public FusionReactorRecipeCategory(IGuiHelper guiHelper) {
background = guiHelper.createDrawable(GuiFusionReactor.texture, 86, 16, 85, 64, 0, 40, 20, 20);
title = I18n.translateToLocal("tile.techreborn.fusioncontrolcomputer.name");
title = I18n.translateToLocal("tile.techreborn:fusion_control_computer.name");
}
@Override

View file

@ -48,7 +48,7 @@ public class GrinderRecipeCategory extends BlankRecipeCategory<GrinderRecipeWrap
public GrinderRecipeCategory(IGuiHelper guiHelper) {
background = guiHelper.createDrawable(texture, 0, 62, 74, 32);
title = I18n.translateToLocal("tile.techreborn.grinder.name");
title = I18n.translateToLocal("tile.techreborn:grinder.name");
}
@Override

View file

@ -50,7 +50,7 @@ public class ImplosionCompressorRecipeCategory extends BlankRecipeCategory<Implo
IDrawableStatic electricityDrawable = guiHelper.createDrawable(GuiImplosionCompressor.texture, 176, 0, 14, 14);
electricity = guiHelper.createAnimatedDrawable(electricityDrawable, 300, IDrawableAnimated.StartDirection.TOP,
true);
title = I18n.translateToLocal("tile.techreborn.implosioncompressor.name");
title = I18n.translateToLocal("tile.techreborn:implosion_compressor.name");
}
@Override

View file

@ -47,7 +47,7 @@ public class IndustrialElectrolyzerRecipeCategory extends BlankRecipeCategory<In
public IndustrialElectrolyzerRecipeCategory(IGuiHelper guiHelper) {
background = guiHelper.createDrawable(GuiIndustrialElectrolyzer.texture, 49, 18, 78, 50);
title = I18n.translateToLocal("tile.techreborn.industrialelectrolyzer.name");
title = I18n.translateToLocal("tile.techreborn:industrial_electrolyzer.name");
}
@Override

View file

@ -58,7 +58,7 @@ public class IndustrialGrinderRecipeCategory extends BlankRecipeCategory<Industr
background = guiHelper.createDrawable(texture, 7, 15, 141, 55);
blankArea = guiHelper.createDrawable(texture, 50, 45, 6, 6);
tankOverlay = guiHelper.createDrawable(texture, 176, 86, 12, 47);
title = I18n.translateToLocal("tile.techreborn.industrialgrinder.name");
title = I18n.translateToLocal("tile.techreborn:industrial_grinder.name");
}
@Override

View file

@ -52,7 +52,7 @@ public class IndustrialSawmillRecipeCategory extends BlankRecipeCategory<Industr
private static final int[] INPUT_TANKS = { 0 };
public IndustrialSawmillRecipeCategory(IGuiHelper guiHelper) {
title = Translator.translateToLocal("tile.techreborn.industrialsawmill.name");
title = Translator.translateToLocal("tile.techreborn:industrial_sawmill.name");
background = guiHelper.createDrawable(texture, 7, 15, 141, 55);
tankOverlay = guiHelper.createDrawable(texture, 176, 86, 12, 47);
}

View file

@ -48,7 +48,7 @@ public class VacuumFreezerRecipeCategory extends BlankRecipeCategory<VacuumFreez
public VacuumFreezerRecipeCategory(IGuiHelper guiHelper) {
background = guiHelper.createDrawable(texture, 0, 62, 74, 32);
title = I18n.translateToLocal("tile.techreborn.vacuumfreezer.name");
title = I18n.translateToLocal("tile.techreborn:vacuum_freezer.name");
}
@Override