component: Fixed #34

This commit is contained in:
2026-06-15 19:31:46 +03:00
parent af61b8661a
commit b139e2da01
+12
View File
@@ -1,3 +1,11 @@
local computer
if require then
-- libcomponent can get loaded early enough in the boot process where require is not present
computer = require("computer")
else
computer = _G.computer
end
local compLib local compLib
local LLcomponent local LLcomponent
if table.copy then if table.copy then
@@ -27,13 +35,17 @@ function compLib.virtual.add(address, componentType, proxy)
if componentlib.removals[address] then if componentlib.removals[address] then
componentlib.removals[address] = nil componentlib.removals[address] = nil
end end
computer.pushSignal("component_added", address, componentType)
end end
function compLib.virtual.remove(address) function compLib.virtual.remove(address)
checkArg(1, address, "string") checkArg(1, address, "string")
if componentlib.additions[address] then if componentlib.additions[address] then
computer.pushSignal("component_removed", address, componentlib.additions[address].componentType)
componentlib.additions[address] = nil componentlib.additions[address] = nil
else else
local componentTypeOutput = compLib.type(address)
computer.pushSignal("component_removed", address, componentTypeOutput or "unknown")
table.insert(componentlib.removals, address) table.insert(componentlib.removals, address)
end end
end end