if(button.id == 3) { newMax *= -1; }
newMax = Math.max(0, Math.min(turbine.getMaxIntakeRateMax(), turbine.getMaxIntakeRate() + newMax));
if(newMax != turbine.getMaxIntakeRate()) {
CommonPacketHandler.INSTANCE.sendToServer(new TurbineChangeMaxIntakeMessage(turbine, newMax));
}
}
if(button.id >= 4 && button.id <= 6) {
VentStatus newStatus;