changed reactor status message text on main view

This commit is contained in:
Mikayla Fischler 2022-09-13 16:08:11 -04:00
parent c47e0044b1
commit 6686d8ea62
2 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ local config = require("coordinator.config")
local coordinator = require("coordinator.coordinator")
local renderer = require("coordinator.renderer")
local COORDINATOR_VERSION = "alpha-v0.4.11"
local COORDINATOR_VERSION = "alpha-v0.4.12"
local print = util.print
local println = util.println

View File

@ -37,7 +37,7 @@ style.reactor = {
states = {
{
color = cpair(colors.black, colors.yellow),
text = "DISCONNECTED"
text = "PLC OFF-LINE"
},
{
color = cpair(colors.white, colors.gray),
@ -49,11 +49,11 @@ style.reactor = {
},
{
color = cpair(colors.black, colors.red),
text = "SCRAM!"
text = "SCRAMMED"
},
{
color = cpair(colors.black, colors.orange),
text = "PLC FAULT!"
text = "PLC FAULT"
}
}
}