1
0
mirror of https://github.com/kepler155c/opus synced 2025-02-07 04:30:03 +00:00
opus/sys/init/4.label.lua

24 lines
474 B
Lua
Raw Normal View History

2019-07-19 10:06:34 -06:00
local os = _G.os
local peripheral = _G.peripheral
2018-01-20 07:18:13 -05:00
2018-01-14 16:44:43 -05:00
-- Default label
if not os.getComputerLabel() then
2018-01-24 17:39:38 -05:00
local id = os.getComputerID()
2019-07-19 10:06:34 -06:00
2018-01-24 17:39:38 -05:00
if _G.turtle then
os.setComputerLabel('turtle_' .. id)
2019-07-19 10:06:34 -06:00
2018-01-24 17:39:38 -05:00
elseif _G.pocket then
os.setComputerLabel('pocket_' .. id)
2019-07-19 10:06:34 -06:00
2018-01-24 17:39:38 -05:00
elseif _G.commands then
os.setComputerLabel('command_' .. id)
2019-07-19 10:06:34 -06:00
elseif peripheral.find('neuralInterface') then
os.setComputerLabel('neural_' .. id)
2018-01-24 17:39:38 -05:00
else
os.setComputerLabel('computer_' .. id)
end
2018-01-14 16:44:43 -05:00
end