1
0
mirror of https://github.com/kepler155c/opus synced 2025-01-24 06:06:54 +00:00

manipulator device :(

This commit is contained in:
kepler155c@gmail.com 2018-12-21 20:58:41 -05:00
parent e14a71ab6a
commit 3de03bef22

View File

@ -155,10 +155,8 @@ end
drivers['manipulator'] = function(dev)
if dev.getName then
local name
pcall(function()
name = dev.getName()
end)
local name = dev.getName()
if name then
if dev.getInventory then
createDevice(name .. ':inventory', 'inventory', 'getInventory', dev)
@ -172,6 +170,7 @@ drivers['manipulator'] = function(dev)
return dev._children
end
end)
end
end