diff --git a/succbone/succd/index.html b/succbone/succd/index.html
index abd5695..8175625 100644
--- a/succbone/succd/index.html
+++ b/succbone/succd/index.html
@@ -410,15 +410,6 @@ window.addEventListener("load", (_) => {
socket.addEventListener("close", (event) => {
status.innerHTML = "Offline";
status.style = colors.highlightFault;
-
- // Indicate all process values as unknown
-
- [failsafe, highpressure, rp, dp, trough, thigh, volts, mbar].forEach((el) => {
- if (!el.innerHTML.includes("??")) {
- el.innerHTML += "??";
- }
- });
-
if (connected) {
console.log("Socket dead, reconnecting...");
}
diff --git a/succbone/succd/main.go b/succbone/succd/main.go
index 64663a8..4a39d11 100644
--- a/succbone/succd/main.go
+++ b/succbone/succd/main.go
@@ -14,7 +14,7 @@ var (
flagFake bool
flagListenHTTP string
flagPressureThresholdRough = ScientificNotationValue(1e-1)
- flagPressureThresholdRoughHysteresis = ScientificNotationValue(3e-2)
+ flagPressureThresholdRoughHysteresis = ScientificNotationValue(2e-2)
flagPressureThresholdHigh = ScientificNotationValue(1e-4)
flagPressureThresholdHighHysteresis = ScientificNotationValue(2e-5)
)