aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/load/GT_FuelLoader.java
diff options
context:
space:
mode:
authorBlood-Asp <bloodasphendrik@gmail.com>2017-02-28 14:18:28 +0100
committerGitHub <noreply@github.com>2017-02-28 14:18:28 +0100
commit48b2e2b87dff6be67f3557fddb54ebe49e08fc97 (patch)
treeb56ae525a40bb536dd3ddf2efadd24d81ec0a920 /src/main/java/gregtech/loaders/load/GT_FuelLoader.java
parent4e043f617b729fec6e011b0840657da434cafd27 (diff)
parentb2157c63206fb11e9c5568d0ca07933d565c8128 (diff)
downloadGT5-Unofficial-48b2e2b87dff6be67f3557fddb54ebe49e08fc97.tar.gz
GT5-Unofficial-48b2e2b87dff6be67f3557fddb54ebe49e08fc97.tar.bz2
GT5-Unofficial-48b2e2b87dff6be67f3557fddb54ebe49e08fc97.zip
Merge pull request #904 from Techlone/unstable
Add new semiconductors and indium recipe
Diffstat (limited to 'src/main/java/gregtech/loaders/load/GT_FuelLoader.java')
-rw-r--r--src/main/java/gregtech/loaders/load/GT_FuelLoader.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gregtech/loaders/load/GT_FuelLoader.java b/src/main/java/gregtech/loaders/load/GT_FuelLoader.java
index aaa1c88365..4268252e8f 100644
--- a/src/main/java/gregtech/loaders/load/GT_FuelLoader.java
+++ b/src/main/java/gregtech/loaders/load/GT_FuelLoader.java
@@ -22,6 +22,8 @@ public class GT_FuelLoader
ItemList.sNitricAcid = GT_Mod.gregtechproxy.addFluid("nitricacid", "Nitric acid ", null, 1, 295);
ItemList.sBlueVitriol = GT_Mod.gregtechproxy.addFluid("solution.bluevitriol", "Blue Vitriol water solution", null, 1, 295);
ItemList.sNickelSulfate = GT_Mod.gregtechproxy.addFluid("solution.nickelsulfate", "Nickel sulfate water solution", null, 1, 295);
+ ItemList.sIndiumConcentrate = GT_Mod.gregtechproxy.addFluid("indiumconcentrate", "Indium Concentrate", null, 1, 295);
+ ItemList.sLeadZincSolution = GT_Mod.gregtechproxy.addFluid("leadzincsolution", "Lead-Zinc solution", null, 1, 295);
ItemList.sRocketFuel = GT_Mod.gregtechproxy.addFluid("rocket_fuel", "Rocket Fuel", null, 1, 295);
new GT_Recipe(new ItemStack(Items.lava_bucket), new ItemStack(Blocks.obsidian), GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Copper, 1L), GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Tin, 1L), GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Electrum, 1L), 30, 2);