Fix Scrapbox JEI handler localisation
This commit is contained in:
parent
1a1ec6fee8
commit
f170f9a418
2 changed files with 6 additions and 6 deletions
|
@ -124,12 +124,7 @@ public class ModRecipes {
|
|||
ScrapboxList.addItemStackToList(new ItemStack(Items.rabbit_hide));
|
||||
ScrapboxList.addItemStackToList(new ItemStack(Items.rabbit_foot));
|
||||
ScrapboxList.addItemStackToList(new ItemStack(Items.apple));
|
||||
|
||||
ScrapboxList.addItemStackToList(ItemGems.getGemByName("ruby"));
|
||||
ScrapboxList.addItemStackToList(ItemGems.getGemByName("sapphire"));
|
||||
ScrapboxList.addItemStackToList(ItemGems.getGemByName("peridot"));
|
||||
ScrapboxList.addItemStackToList(ItemGems.getGemByName("redGarnet"));
|
||||
ScrapboxList.addItemStackToList(ItemGems.getGemByName("yellowGarnet"));
|
||||
|
||||
ScrapboxList.addItemStackToList(ItemCells.getCellByName("empty"));
|
||||
ScrapboxList.addItemStackToList(ItemCells.getCellByName("water"));
|
||||
ScrapboxList.addItemStackToList(ItemParts.getPartByName("scrap"));
|
||||
|
@ -192,6 +187,10 @@ public class ModRecipes {
|
|||
for(String i : ItemDusts.types){
|
||||
ScrapboxList.addItemStackToList(ItemDusts.getDustByName(i));
|
||||
}
|
||||
|
||||
for(String i : ItemGems.types){
|
||||
ScrapboxList.addItemStackToList(ItemGems.getGemByName(i));
|
||||
}
|
||||
|
||||
registerDyable(Blocks.carpet);
|
||||
registerDyable(Blocks.stained_glass);
|
||||
|
|
|
@ -974,6 +974,7 @@ techreborn.jei.recipe.start.cost=Start: %sEU
|
|||
techreborn.jei.recipe.running.cost=EU/t: %s
|
||||
techreborn.jei.recipe.processing.time.1=Time: %s ticks
|
||||
techreborn.jei.recipe.processing.time.2=(%s seconds)
|
||||
jei.techreborn.scrapbox.name=Opening Scrapboxes
|
||||
|
||||
techreborn.jei.category.alloy.furnace=Alloy Furnace
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue