#325 fixed coordinator unit overview height calcs

This commit is contained in:
Mikayla Fischler 2023-08-25 20:02:59 -04:00
parent 95c300e450
commit d9e48f5cac
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ local sounder = require("coordinator.sounder")
local apisessions = require("coordinator.session.apisessions")
local COORDINATOR_VERSION = "v1.0.2"
local COORDINATOR_VERSION = "v1.0.3"
local println = util.println
local println_ts = util.println_ts

View File

@ -34,7 +34,7 @@ local function make(parent, x, y, unit)
if num_boilers == 0 and num_turbines == 1 then
height = 9
elseif num_boilers == 1 and num_turbines <= 2 then
elseif num_boilers <= 1 and num_turbines <= 2 then
height = 17
end