This commit is contained in:
2025-12-12 13:38:15 -05:00
parent 0822432ba8
commit bc3b41f433

View File

@@ -4,7 +4,7 @@ local function addDriver(fileName)
shell.execute("rm", fullFile)
local baseRoute = "https://git.astrocore.space/root/nova-corp/raw/branch/main/"
shell.execute("wget", baseRoute .. fullFile)
sleep(5)
sleep(2)
return require(fileName)
end
@@ -14,7 +14,7 @@ local function addFolderDriver(folder, fileName)
shell.execute("rm", fullFile)
local baseRoute = "https://git.astrocore.space/root/nova-corp/raw/branch/main/"
shell.execute("wget", baseRoute .. folder .. "/" .. fullFile)
sleep(5)
sleep(2)
return require(fileName)
end