diff --git a/pocket/ui/docs.lua b/pocket/ui/docs.lua index c047712..38a9472 100644 --- a/pocket/ui/docs.lua +++ b/pocket/ui/docs.lua @@ -198,12 +198,12 @@ doc("fp_rps_auto", "AUTOMATIC", "The RPS was tripped by the supervisor automatic doc("fp_rps_to", "TIMEOUT", "The RPS tripped due to losing the supervisor connection.") doc("fp_rps_pflt", "PLC FAULT", "The RPS tripped due to a peripheral error.") doc("fp_rps_rflt", "RCT FAULT", "The RPS tripped due to the reactor not being formed.") -doc("fp_rps_temp", "HI DAMAGE", "The RPS tripped due to being >= " .. const.RPS_LIMITS.MAX_DAMAGE_PERCENT .. "% damaged.") -doc("fp_rps_temp", "HI TEMP", "The RPS tripped due to high reactor temperature (>= " .. const.RPS_LIMITS.MAX_DAMAGE_TEMPERATURE .. "K).") +doc("fp_rps_temp", "HI DAMAGE", "The RPS tripped due to being >=" .. const.RPS_LIMITS.MAX_DAMAGE_PERCENT .. "% damaged.") +doc("fp_rps_temp", "HI TEMP", "The RPS tripped due to high reactor temperature (>=" .. const.RPS_LIMITS.MAX_DAMAGE_TEMPERATURE .. "K).") doc("fp_rps_fuel", "LO FUEL", "The RPS tripped due to having no fuel.") -doc("fp_rps_waste", "HI WASTE", "The RPS tripped due to having high levels of waste (> " .. const.RPS_LIMITS.MAX_WASTE_FILL .. "%).") -doc("fp_rps_ccool", "LO CCOOLANT", "The RPS tripped due to having low levels of cooled coolant (< " .. const.RPS_LIMITS.MIN_COOLANT_FILL .. "%).") -doc("fp_rps_ccool", "HI HCOOLANT", "The RPS tripped due to having high levels of heated coolant (> " .. const.RPS_LIMITS.MAX_HEATED_COLLANT_FILL .. "%).") +doc("fp_rps_waste", "HI WASTE", "The RPS tripped due to having high levels of waste (>" .. (const.RPS_LIMITS.MAX_WASTE_FILL * 100) .. "%).") +doc("fp_rps_ccool", "LO CCOOLANT", "The RPS tripped due to having low levels of cooled coolant (<" .. (const.RPS_LIMITS.MIN_COOLANT_FILL * 100) .. "%).") +doc("fp_rps_ccool", "HI HCOOLANT", "The RPS tripped due to having high levels of heated coolant (>" .. (const.RPS_LIMITS.MAX_HEATED_COLLANT_FILL * 100) .. "%).") target = docs.fp.rtu_gw sect("Co-Routine States")