From 317c0df9e8d1a32650749f82aedb5d6511a1233e Mon Sep 17 00:00:00 2001 From: WahPlus Date: Mon, 15 Jun 2026 19:37:48 +0300 Subject: [PATCH] component: Fixed #33 --- lib/component.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/component.lua b/lib/component.lua index 4f15e2b..2a24a94 100644 --- a/lib/component.lua +++ b/lib/component.lua @@ -16,8 +16,8 @@ else LLcomponent = component end ---local ocelot = LLcomponent.proxy(LLcomponent.list("ocelot")()) ---ocelot.log("loaded") +-- local ocelot = LLcomponent.proxy(LLcomponent.list("ocelot")()) +-- ocelot.log("loaded") _G.componentlib = { ["additions"] = {}, ["removals"] = {} } compLib.virtual = {} @@ -130,7 +130,9 @@ setmetatable(compLib, { if LLcomponent.list(item)() then return compLib.proxy(compLib.list(item)()) else - return compLib[item] + -- Why did I ever fucking write this?? + -- return compLib[item] + return nil end end, })