diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2022-01-26 17:29:56 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2022-01-26 17:29:56 +0000 |
commit | 9a25f7d7141def59ba11317a8ac4e3b2f72f24fd (patch) | |
tree | 054787935db7d42f822142e8715893c46b119a7b /src/main/java/gtPlusPlus/xmod/forestry | |
parent | 3d46d957637c60aeecb59065da2328401f27949d (diff) | |
download | GT5-Unofficial-9a25f7d7141def59ba11317a8ac4e3b2f72f24fd.tar.gz GT5-Unofficial-9a25f7d7141def59ba11317a8ac4e3b2f72f24fd.tar.bz2 GT5-Unofficial-9a25f7d7141def59ba11317a8ac4e3b2f72f24fd.zip |
Added a way to hide every filled Universal Cell.
Minor Locale fix.
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/forestry')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/forestry/bees/items/output/GTPP_Comb.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/forestry/bees/items/output/GTPP_Comb.java b/src/main/java/gtPlusPlus/xmod/forestry/bees/items/output/GTPP_Comb.java index 138ffe3cb4..26b32c8b22 100644 --- a/src/main/java/gtPlusPlus/xmod/forestry/bees/items/output/GTPP_Comb.java +++ b/src/main/java/gtPlusPlus/xmod/forestry/bees/items/output/GTPP_Comb.java @@ -113,7 +113,7 @@ public class GTPP_Comb extends Item { public static void initCombsRecipes() { addChemicalRecipe(GTPP_CombType.DRAGONBLOOD, new ItemStack[]{GT_ModHandler.getModItem("Forestry", "refractoryWax", 1L, 0), GTPP_Bees.propolis.getStackForType(GTPP_PropolisType.DRAGONBLOOD), GTPP_Bees.drop.getStackForType(GTPP_DropType.DRAGONBLOOD)}, new int[]{3000, 1500, 500}); - addChemicalRecipe(GTPP_CombType.FORCE, new ItemStack[]{GT_ModHandler.getModItem("Forestry", "refractoryWax", 1L, 0), GTPP_Bees.propolis.getStackForType(GTPP_PropolisType.FORCE), GTPP_Bees.drop.getStackForType(GTPP_DropType.FORCE)}, new int[]{5000, 3000, 1000}); + addChemicalRecipe(GTPP_CombType.FORCE, new ItemStack[]{GT_ModHandler.getModItem("Forestry", "beeswax", 1L, 0), GTPP_Bees.propolis.getStackForType(GTPP_PropolisType.FORCE), GTPP_Bees.drop.getStackForType(GTPP_DropType.FORCE)}, new int[]{5000, 3000, 1000}); } |