i'm an idiot

This commit is contained in:
2026-06-25 14:34:58 -05:00
parent 2d30323148
commit 3f5def2b6b

View File

@@ -304,14 +304,14 @@ local function checkIfThrusterIsIndexed()
for _, v in ipairs(ThrusterTypes) do for _, v in ipairs(ThrusterTypes) do
local thrustersList = peripheral.find(v) local thrustersList = peripheral.find(v)
if thrustersList then if thrustersList then
table.insert(thrusters, peripheral.find(v)) table.insert(thrusters, thrustersList)
end end
end end
for _, v in ipairs(PropellerTypes) do for _, v in ipairs(PropellerTypes) do
local thrustersList = peripheral.find(v) local thrustersList = peripheral.find(v)
if thrustersList then if thrustersList then
table.insert(thrusters, peripheral.find(v)) table.insert(thrusters, thrustersList)
end end
end end