mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-26 00:38:35 +01:00
Rebalance canola to be more item-giving
This commit is contained in:
parent
cb25abfacc
commit
924011768d
3 changed files with 3 additions and 3 deletions
|
@ -164,7 +164,7 @@ public class InitBlocks{
|
|||
blockFermentingBarrel = new BlockFermentingBarrel("blockFermentingBarrel");
|
||||
blockRice = new BlockPlant("blockRice", 6, 1, 2);
|
||||
CompatUtil.registerMFRPlant(blockRice);
|
||||
blockCanola = new BlockPlant("blockCanola", 4, 3, 3);
|
||||
blockCanola = new BlockPlant("blockCanola", 4, 5, 5);
|
||||
CompatUtil.registerMFRPlant(blockCanola);
|
||||
blockFlax = new BlockPlant("blockFlax", 6, 2, 4);
|
||||
CompatUtil.registerMFRPlant(blockFlax);
|
||||
|
|
|
@ -26,7 +26,7 @@ import net.minecraftforge.fluids.*;
|
|||
|
||||
public class TileEntityCanolaPress extends TileEntityInventoryBase implements IEnergyReceiver, IFluidHandler, IEnergySaver, IFluidSaver{
|
||||
|
||||
public static final int PRODUCE = 100;
|
||||
public static final int PRODUCE = 120;
|
||||
public static final int ENERGY_USE = 35;
|
||||
private static final int TIME = 30;
|
||||
public EnergyStorage storage = new EnergyStorage(40000);
|
||||
|
|
|
@ -39,7 +39,7 @@ public class TileEntityFermentingBarrel extends TileEntityInventoryBase implemen
|
|||
public void updateEntity(){
|
||||
super.updateEntity();
|
||||
if(!worldObj.isRemote){
|
||||
int produce = 50;
|
||||
int produce = 80;
|
||||
if(this.canolaTank.getFluidAmount() >= produce && produce <= this.oilTank.getCapacity()-this.oilTank.getFluidAmount()){
|
||||
this.currentProcessTime++;
|
||||
if(this.currentProcessTime >= PROCESS_TIME){
|
||||
|
|
Loading…
Reference in a new issue