Fix
This commit is contained in:
@@ -73,7 +73,7 @@ if(minified)then
|
|||||||
error("Unable to find minified_pluginDirectory please report this bug to our discord.")
|
error("Unable to find minified_pluginDirectory please report this bug to our discord.")
|
||||||
end
|
end
|
||||||
for name,_ in pairs(minified_pluginDirectory)do
|
for name,_ in pairs(minified_pluginDirectory)do
|
||||||
local plugin = require(fs.combine("plugins", name))
|
local plugin = require(fs.combine("plugins", name:gsub(".lua", "")))
|
||||||
if type(plugin) == "table" then
|
if type(plugin) == "table" then
|
||||||
for k,v in pairs(plugin) do
|
for k,v in pairs(plugin) do
|
||||||
if(k ~= "API")then
|
if(k ~= "API")then
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
local PropertySystem = require("propertySystem")
|
local PropertySystem = require("propertySystem")
|
||||||
local uuid = require("/libraries/utils").uuid
|
local uuid = require("libraries/utils").uuid
|
||||||
|
|
||||||
--- The base class for all UI elements in Basalt
|
--- The base class for all UI elements in Basalt
|
||||||
--- @class BaseElement : PropertySystem
|
--- @class BaseElement : PropertySystem
|
||||||
|
|||||||
Reference in New Issue
Block a user