diff options
author | Dream-Master <dream-master@gmx.net> | 2018-01-09 20:15:28 +0100 |
---|---|---|
committer | Dream-Master <dream-master@gmx.net> | 2018-01-09 20:15:28 +0100 |
commit | 588e58a0c4b44b0b3a3ea9eddca404689db7419c (patch) | |
tree | 1dab9b4c8d40f0b7720b9d896b2b2283ef74196c /src/main | |
parent | d697dc44d0841428d10d3922eff56a66b65c969d (diff) | |
download | GT5-Unofficial-588e58a0c4b44b0b3a3ea9eddca404689db7419c.tar.gz GT5-Unofficial-588e58a0c4b44b0b3a3ea9eddca404689db7419c.tar.bz2 GT5-Unofficial-588e58a0c4b44b0b3a3ea9eddca404689db7419c.zip |
Add Tooltip for BBF
Change Brick compression time for BBF
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_BrickedBlastFurnace.java | 1 | ||||
-rw-r--r-- | src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_BrickedBlastFurnace.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_BrickedBlastFurnace.java index 8c369c5254..ae903930a0 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_BrickedBlastFurnace.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_BrickedBlastFurnace.java @@ -28,6 +28,7 @@ public class GT_MetaTileEntity_BrickedBlastFurnace extends GT_MetaTileEntity_Pri public String[] getDescription() { return new String[]{ "Controller Block for the Bricked Blast Furnace", + "Controller has to be placed in the Center of the second layer", "Useable for Steel and general Pyrometallurgy", "Size(WxHxD): 3x4x3 (Hollow, with opening on top)", "Built from 32 Fired Brick Blocks", diff --git a/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java b/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java index c9611f7adb..7af45d6bda 100644 --- a/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java +++ b/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java @@ -1138,7 +1138,7 @@ public class GT_MachineRecipeLoader implements Runnable { //GT_ModHandler.addCompressionRecipe(new ItemStack(Items.wheat, 9, 0), new ItemStack(Blocks.hay_block, 1, 0)); GT_ModHandler.addCompressionRecipe(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Glowstone, 4L), new ItemStack(Blocks.glowstone, 1)); - GT_ModHandler.addCompressionRecipe(Materials.Fireclay.getDust(1), ItemList.CompressedFireclay.get(1)); + GT_Values.RA.addCompressorRecipe(Materials.Fireclay.getDust(1), ItemList.CompressedFireclay.get(1), 80, 4); GameRegistry.addSmelting(ItemList.CompressedFireclay.get(1, new Object[0]), ItemList.Firebrick.get(1, new Object[0]), 0); GT_Values.RA.addCutterRecipe(GT_OreDictUnificator.get(OrePrefixes.block, Materials.Graphite, 1L), GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Graphite, 9L), GT_Values.NI, 500, 48); |