mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Rebalanced Reconstructor a bit
This commit is contained in:
parent
99d0a413e9
commit
408d084ac5
2 changed files with 2 additions and 2 deletions
|
@ -114,7 +114,7 @@ public class BlockCrafting{
|
|||
if(ConfigCrafting.ATOMIC_RECONSTRUCTOR.isEnabled()){
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockAtomicReconstructor),
|
||||
"IRI", "RCR", "IRI",
|
||||
'R', "blockRedstone",
|
||||
'R', "dustRedstone",
|
||||
'I', "ingotIron",
|
||||
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal())));
|
||||
recipeAtomicReconstructor = Util.GetRecipes.lastIRecipe();
|
||||
|
|
|
@ -26,7 +26,7 @@ import net.minecraftforge.common.util.ForgeDirection;
|
|||
|
||||
public class TileEntityAtomicReconstructor extends TileEntityInventoryBase implements IEnergyReceiver{
|
||||
|
||||
public static final int ENERGY_USE = 200;
|
||||
public static final int ENERGY_USE = 1000;
|
||||
public EnergyStorage storage = new EnergyStorage(3000000);
|
||||
private int currentTime;
|
||||
|
||||
|
|
Loading…
Reference in a new issue