Merge pull request #492 from MikaylaFischler/devel

2024.05.16 Beta Hotfix
This commit is contained in:
Mikayla 2024-05-16 22:13:01 -04:00 committed by GitHub
commit b96eb7d89d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 3 deletions

View File

@ -603,11 +603,17 @@ function iocontrol.record_unit_data(data)
for key, val in pairs(unit.annunciator) do
if key == "BoilerOnline" or key == "TurbineOnline" then
-- split up online arrays
local every = true
-- split up online arrays
for id = 1, #val do
every = every and val[id]
unit.boiler_ps_tbl[id].publish(key, val[id])
if key == "BoilerOnline" then
unit.boiler_ps_tbl[id].publish(key, val[id])
else
unit.turbine_ps_tbl[id].publish(key, val[id])
end
end
if not every then rcs_disconn = true end

View File

@ -18,7 +18,7 @@ local iocontrol = require("pocket.iocontrol")
local pocket = require("pocket.pocket")
local renderer = require("pocket.renderer")
local POCKET_VERSION = "v0.9.0-alpha"
local POCKET_VERSION = "v0.9.1-alpha"
local println = util.println
local println_ts = util.println_ts