Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/instances/for_keys.luau
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ local function indexes<K, VI, VO>(

-- remove unused values
for key in input_nodes do
if input[key] then
if input[key] or destruction_threads[key] then
continue
end
local node = output_active[key]
Expand Down
2 changes: 1 addition & 1 deletion src/instances/for_values.luau
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ local function values<V, KI, KO>(

-- remove unused values
for value in input_nodes do
if reversed[value] then
if reversed[value] or destruction_threads[value] then
continue
end

Expand Down
Loading