Resolved #343 - Different material water turbines now have different stats

This commit is contained in:
Calclavia 2014-03-02 12:24:26 +08:00
parent 8ae54bb099
commit e7d75e3795
2 changed files with 2 additions and 2 deletions

View file

@ -105,7 +105,7 @@ public class TileWaterTurbine extends TileMechanicalTurbine
*/
private long getWaterPower()
{
return maxPower / 2;
return maxPower / (2 - tier + 1);
}
@Override

View file

@ -94,7 +94,7 @@ public abstract class TileFluidNode extends TileAdvanced implements IPacketRecei
@Override
public Packet getDescriptionPacket()
{
return ResonantInduction.PACKET_TILE.getPacketWithID(PACKET_DESCRIPTION, this, this.colorID, this.renderSides, this.getInternalTank().getCapacity(), this.getInternalTank().writeToNBT(new NBTTagCompound()));
return ResonantInduction.PACKET_TILE.getPacketWithID(PACKET_DESCRIPTION, this, this.colorID, this.renderSides, getInternalTank().getCapacity(), getInternalTank().writeToNBT(new NBTTagCompound()));
}
public void sendRenderUpdate()