Change eupertick to 0.1. Closes #1176

This commit is contained in:
drcrazy 2017-09-07 18:31:20 +03:00
parent e26d7e3a0c
commit 8a8205b4b1

View file

@ -47,7 +47,7 @@ public class TileWaterMill extends TilePowerAcceptor implements IToolDrop {
@ConfigRegistry(config = "machines", category = "water_mill", key = "WaterMillMaxEnergy", comment = "Water Mill Max Energy (Value in EU)") @ConfigRegistry(config = "machines", category = "water_mill", key = "WaterMillMaxEnergy", comment = "Water Mill Max Energy (Value in EU)")
public static int maxEnergy = 1000; public static int maxEnergy = 1000;
@ConfigRegistry(config = "machines", category = "water_mill", key = "WaterMillEnergyPerTick", comment = "Water Mill Energy Multiplier") @ConfigRegistry(config = "machines", category = "water_mill", key = "WaterMillEnergyPerTick", comment = "Water Mill Energy Multiplier")
public static int energyMultiplier = 1; public static double energyMultiplier = 0.1;
int waterblocks = 0; int waterblocks = 0;
@ -56,8 +56,8 @@ public class TileWaterMill extends TilePowerAcceptor implements IToolDrop {
} }
@Override @Override
public void updateEntity() { public void update() {
super.updateEntity(); super.update();
if (this.world.getTotalWorldTime() % 20 == 0) { if (this.world.getTotalWorldTime() % 20 == 0) {
this.checkForWater(); this.checkForWater();
} }