1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-23 13:43:21 +00:00
opus/sys/init/4.label.lua
2019-03-31 15:16:45 -04:00

16 lines
341 B
Lua

local os = _G.os
-- Default label
if not os.getComputerLabel() then
local id = os.getComputerID()
if _G.turtle then
os.setComputerLabel('turtle_' .. id)
elseif _G.pocket then
os.setComputerLabel('pocket_' .. id)
elseif _G.commands then
os.setComputerLabel('command_' .. id)
else
os.setComputerLabel('computer_' .. id)
end
end