A few fixes, new textures

This commit is contained in:
Aidan Brady 2014-01-16 16:31:05 -05:00
parent 3e6a017979
commit 4d29a57a27
3 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@ import com.google.common.io.ByteArrayDataInput;
public class TileEntitySalinationController extends TileEntitySalinationTank implements IConfigurable
{
public static final int MAX_BRINE = 1000;
public static final int MAX_BRINE = 10000;
public static final int MAX_SOLARS = 4;
public static final int WARMUP = 10000;
@ -583,12 +583,12 @@ public class TileEntitySalinationController extends TileEntitySalinationTank imp
public int getScaledWaterLevel(int i)
{
return waterTank.getFluid() != null ? waterTank.getFluid().amount*i / 10000 : 0;
return waterTank.getFluid() != null ? waterTank.getFluid().amount*i / getMaxWater() : 0;
}
public int getScaledBrineLevel(int i)
{
return brineTank.getFluid() != null ? brineTank.getFluid().amount*i / 10000 : 0;
return brineTank.getFluid() != null ? brineTank.getFluid().amount*i / MAX_BRINE : 0;
}
public int getScaledTempLevel(int i)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 13 KiB