reactor PLC configurator emercoolcolor correction

This commit is contained in:
Mikayla Fischler 2023-10-19 23:20:41 -04:00
parent d77a527b15
commit ff4a5a68d9
2 changed files with 2 additions and 2 deletions

View File

@ -301,7 +301,7 @@ local function config_view(display)
local function submit_emcool()
tmp_cfg.EmerCoolSide = side_options_map[side.get_value()]
tmp_cfg.EmerCoolColor = color_options_map[color.get_value()]
tmp_cfg.EmerCoolColor = util.trinary(bundled.get_value(), color_options_map[color.get_value()], nil)
next_from_plc()
end

View File

@ -18,7 +18,7 @@ local plc = require("reactor-plc.plc")
local renderer = require("reactor-plc.renderer")
local threads = require("reactor-plc.threads")
local R_PLC_VERSION = "v1.6.2"
local R_PLC_VERSION = "v1.6.3"
local println = util.println
local println_ts = util.println_ts