mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
Made the solar thingy cheaper.
This commit is contained in:
parent
dae0a9a0b4
commit
1b176008a5
2 changed files with 2 additions and 2 deletions
|
@ -487,7 +487,7 @@ public class BlockCrafting{
|
|||
if(ConfigCrafting.SOLAR_PANEL.isEnabled()){
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockFurnaceSolar),
|
||||
"IQI", "CDC", "IBI",
|
||||
'D', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.DIAMOND.ordinal()),
|
||||
'D', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()),
|
||||
'I', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
||||
'Q', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
||||
|
|
|
@ -21,7 +21,7 @@ import net.minecraftforge.common.util.ForgeDirection;
|
|||
|
||||
public class TileEntityFurnaceSolar extends TileEntityBase implements IEnergyProvider, IEnergySaver, IEnergyDisplay{
|
||||
|
||||
public static final int PRODUCE = 10;
|
||||
public static final int PRODUCE = 8;
|
||||
public EnergyStorage storage = new EnergyStorage(30000);
|
||||
private int oldEnergy;
|
||||
|
||||
|
|
Loading…
Reference in a new issue