Change default courses domain to courses.beatrun.ru

This commit is contained in:
Jonny_Bro (Nikita) 2023-07-31 15:26:00 +05:00 committed by GitHub
parent d28b7f67ec
commit f4fa11b4ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
local apikey = CreateClientConVar("Beatrun_Apikey", "0", true, false, "Your API key")
local domain = CreateClientConVar("Beatrun_Domain", "localhost", true, false, "Online courses domain")
local domain = CreateClientConVar("Beatrun_Domain", "courses.beatrun.ru", true, false, "Online courses domain")
function UploadCourse()
if Course_Name == "" or Course_ID == "" then return print("Can't upload in Freeplay") end
@ -75,4 +75,4 @@ end
concommand.Add("Beatrun_LoadCode", function(ply, cmd, args, argstr)
GetCourse(args[1])
end)
end)