comment and formatting fixes

This commit is contained in:
Mikayla 2025-10-17 20:59:36 +00:00
parent 859e04712f
commit 2aa5c93404
3 changed files with 4 additions and 4 deletions

View File

@ -212,7 +212,7 @@ function threads.thread__main(smem, init)
---@cast device Modem ---@cast device Modem
local is_comms_modem = util.trinary(plc_dev.modem_wired, plc_dev.modem_iface == param1, device.isWireless()) local is_comms_modem = util.trinary(plc_dev.modem_wired, plc_dev.modem_iface == param1, device.isWireless())
-- note, check init_ok since nic will be nil if it is false -- note, check init_ok first since nic will be nil if it is false
if is_comms_modem and not (plc_state.init_ok and nic.is_connected()) then if is_comms_modem and not (plc_state.init_ok and nic.is_connected()) then
-- reconnected modem -- reconnected modem
plc_dev.modem = device plc_dev.modem = device

View File

@ -447,7 +447,7 @@ end
---@return table|nil reactor function table ---@return table|nil reactor function table
function ppm.get_fission_reactor() return ppm.get_device("fissionReactorLogicAdapter") end function ppm.get_fission_reactor() return ppm.get_device("fissionReactorLogicAdapter") end
-- get the named wired modem -- get a wired modem by name
---@nodiscard ---@nodiscard
---@param iface string CC peripheral interface ---@param iface string CC peripheral interface
---@return Modem|nil modem function table ---@return Modem|nil modem function table