From eddb5e3744b6ee798e98979d2864e1cc1324316f Mon Sep 17 00:00:00 2001 From: itzmarkoni Date: Tue, 9 Dec 2025 22:41:38 -0500 Subject: [PATCH] updated kernel address --- kernel.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel.lua b/kernel.lua index 1e91d60..9a948a6 100644 --- a/kernel.lua +++ b/kernel.lua @@ -2,7 +2,7 @@ local function addDriver(fileName) local extension = ".lua" local fullFile = fileName .. extension shell.execute("rm", fullFile) - local baseRoute = "https://git.astrocore.space/root/NovaCorpLLC/raw/branch/main/" + local baseRoute = "https://git.astrocore.space/root/nova-corp/raw/branch/main/" shell.execute("wget", baseRoute .. fullFile) sleep(1) return require(fileName)