Skip to content

Commit c1a3823

Browse files
authored
Merge pull request #9 from TwistedTail/fix-links-error
Fixed missing ENT._links error
2 parents 839af48 + 1f81873 commit c1a3823

File tree

3 files changed

+26
-6
lines changed

3 files changed

+26
-6
lines changed

lua/cfw/classes/link_sv.lua

+6-3
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,13 @@ do
8989
end
9090

9191
function ENT:GetLinks() -- Creates a shallow copy of the links table
92-
local out = {}
92+
local links = self._links
93+
local out = {}
9394

94-
for k, v in pairs(self._links) do
95-
out[k] = v
95+
if links then
96+
for k, v in pairs(links) do
97+
out[k] = v
98+
end
9699
end
97100

98101
return out

lua/cfw/core/connectivity_sv.lua

+5-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ local function floodFill(source, sinkIndex)
1313

1414
if entIndex == sinkIndex then return true, closed end
1515

16-
for neighborIndex, _ in pairs(Entity(entIndex)._links) do -- neighborIndex, neighborLink
16+
for neighborIndex in pairs(Entity(entIndex)._links) do -- neighborIndex, neighborLink
1717
if not closed[neighborIndex] then
1818
open[neighborIndex] = true
1919
end
@@ -65,7 +65,10 @@ end
6565
function CFW.disconnect(entA, indexB)
6666
if entA:EntIndex() == indexB then return end -- Should not happen normally, but ragdolls allow you to constrain to other bones on the same ragdoll, and it is the same entity
6767

68-
local link = entA._links[indexB]
68+
local link = entA._links[indexB]
69+
70+
if not link then return end -- There's nothing to disconnect here
71+
6972
local contraptionPopped = link:Sub()
7073

7174
if contraptionPopped then return end

lua/cfw/core/parenting_sv.lua

+15-1
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,18 @@ hook.Add("Initialize", "CFW", function()
9292
end)
9393

9494
hook.Remove("Initialize", "CFW")
95-
end)
95+
end)
96+
97+
-- In order to prevent NULL entities flooding the ENT._links table, we'll just get rid of them before they get removed
98+
-- This is a fix for a really annoying issue that was showing up in multiple different ways
99+
hook.Add("EntityRemoved", "cfw.entityRemoved", function(ent)
100+
if not IsValid(ent) then return end
101+
102+
local links = ent:GetLinks()
103+
104+
if not links then return end
105+
106+
for index in pairs(links) do
107+
disconnect(ent, index)
108+
end
109+
end)

0 commit comments

Comments
 (0)