diff options
author | Blood-Asp <bloodasphendrik@gmail.com> | 2017-02-28 14:18:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-28 14:18:28 +0100 |
commit | 48b2e2b87dff6be67f3557fddb54ebe49e08fc97 (patch) | |
tree | b56ae525a40bb536dd3ddf2efadd24d81ec0a920 /src/main/java/gregtech/loaders/load/GT_FuelLoader.java | |
parent | 4e043f617b729fec6e011b0840657da434cafd27 (diff) | |
parent | b2157c63206fb11e9c5568d0ca07933d565c8128 (diff) | |
download | GT5-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.java | 2 |
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);
|