mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
Rebalanced canola oil again.
Because people were annoying me again.
This commit is contained in:
parent
313c716471
commit
fbc5c5240d
2 changed files with 2 additions and 2 deletions
|
@ -162,7 +162,7 @@ public class InitBlocks{
|
|||
blockFermentingBarrel = new BlockFermentingBarrel("blockFermentingBarrel");
|
||||
blockRice = new BlockPlant("blockRice", 1, 2);
|
||||
CompatUtil.registerMFRPlant(blockRice);
|
||||
blockCanola = new BlockPlant("blockCanola", 5, 5);
|
||||
blockCanola = new BlockPlant("blockCanola", 2, 3);
|
||||
CompatUtil.registerMFRPlant(blockCanola);
|
||||
blockFlax = new BlockPlant("blockFlax", 2, 4);
|
||||
CompatUtil.registerMFRPlant(blockFlax);
|
||||
|
|
|
@ -26,7 +26,7 @@ import net.minecraftforge.fml.relauncher.SideOnly;
|
|||
|
||||
public class TileEntityCanolaPress extends TileEntityInventoryBase implements IEnergyReceiver, IFluidHandler, IEnergySaver, IFluidSaver{
|
||||
|
||||
public static final int PRODUCE = 120;
|
||||
public static final int PRODUCE = 80;
|
||||
public static final int ENERGY_USE = 35;
|
||||
private static final int TIME = 30;
|
||||
public EnergyStorage storage = new EnergyStorage(40000);
|
||||
|
|
Loading…
Reference in a new issue