diff --git a/kristify.lua b/kristify.lua index bfa89d3..bcbd90f 100644 --- a/kristify.lua +++ b/kristify.lua @@ -12,7 +12,7 @@ end -- Check upstream version -local gitAPI = http.get("https://gitbucket.fso.ovh/fasolo97/Kristify/raw/main/src/version.txt") +local gitAPI = http.get("https://gitbucket.fso.ovh/SyntaxNation/Kristify/raw/main/src/version.txt") if gitAPI then local upstreamVersion = gitAPI.readAll() @@ -108,7 +108,7 @@ end local function generateTree(name) - sURL = "https://gitbucket.fso.ovh/fasolo97/Kristify/raw/main" + sURL = "https://gitbucket.fso.ovh/SyntaxNation/Kristify/raw/main" local tTree = filePaths return tTree @@ -148,7 +148,7 @@ error("Holdup. How- eh whatever. You need the http API!") end - local response, err, errResp = http.get("https://gitbucket.fso.ovh/fasolo97/Kristify/raw/main/installer.lua") + local response, err, errResp = http.get("https://gitbucket.fso.ovh/SyntaxNation/Kristify/raw/main/installer.lua") if not response then error("Couldn't get the install script! Reason: \'" .. err .. "\' (code " .. errResp.getResponseCode() .. ')') diff --git a/src/init.lua b/src/init.lua index 3aff46a..bbe385c 100644 --- a/src/init.lua +++ b/src/init.lua @@ -92,7 +92,7 @@ local basalt = {} if not fs.exists(fs.combine(ctx.path.src, "lib", "basalt")) then local basaltDL, err, errCode = http.get( - "https://gitbucket.fso.ovh/fasolo97/Kristify/raw/main/src/libs/basalt.lua") + "https://gitbucket.fso.ovh/SyntaxNation/Kristify/raw/main/src/libs/basalt.lua") if not basaltDL then ctx.logger:error("Couldn't load Basalt into memory! Reason: \'" .. err .. "\' (code " .. errCode.getResponseCode() .. ')')