made fetch get the logo, instead of getting preloaded when booting

This commit is contained in:
Ponali
2025-10-05 08:09:14 +02:00
parent 1d49683d3c
commit 296aba9a2f
3 changed files with 21 additions and 20 deletions
+2 -3
View File
@@ -1,6 +1,6 @@
local module = {}
module.dependencies = {"terminal"}
module.dependencies = { "terminal" }
function module.check()
return true -- This module should always be loaded
@@ -11,7 +11,6 @@ function module.init()
"print",
"_VERSION",
"_OSVERSION",
"_OSLOGO",
"assert",
"error",
"getmetatable",
@@ -39,7 +38,7 @@ function module.init()
"table",
"checkArg",
"utf8",
"convert"
"convert",
}
for _, value in ipairs(publicTable) do
_G._PUBLIC[value] = table.copy(_G[value])