1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-27 14:45:18 -04:00
OC-PsychOS2/module/component-get.lua
2023-07-31 08:11:24 +10:00

9 lines
186 B
Lua

function component.get(addr, ctype)
for c in component.list(ctype, true) do
if c:sub(1, addr:len()) == addr then
return c
end
end
return nil, "no such component"
end