e9da54c2f9
Too many changes to list.
14 lines
242 B
Lua
14 lines
242 B
Lua
INC_CLIENT()
|
|
|
|
function ENT:Initialize()
|
|
self:DrawShadow(false)
|
|
|
|
self:GetOwner().m_Couple = self
|
|
end
|
|
|
|
function ENT:OnRemove()
|
|
local owner = self:GetOwner()
|
|
if owner:IsValid() and owner.m_Couple == self then
|
|
owner.m_Couple = nil
|
|
end
|
|
end
|