From 588fe4f5cf14f16007dc97c8680c00662bbd87cb Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Sun, 14 May 2023 19:40:15 +0200 Subject: [PATCH] Update ui.lua --- docs/ui.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ui.lua b/docs/ui.lua index 6d54618..05a39a7 100644 --- a/docs/ui.lua +++ b/docs/ui.lua @@ -1,5 +1,5 @@ local installerPath = "https://basalt.madefor.cc/install.lua" -local installer = require("installer") -- basalts installing api +local installer local main = basalt.createFrame():setTheme({FrameBG = colors.lightGray, FrameFG=colors.black}) @@ -27,7 +27,7 @@ local function downloadInstaller() if(fs.exists("installer.lua"))then local f = fs.open("installer.lua", "r") if(f~=nil)then - --installer = load(f.readAll())() + installer = load(f.readAll())() f.close() return end