Remove error logger
This commit is contained in:
parent
f4e6b4a0fb
commit
fbd6c7a3f7
|
|
@ -29,7 +29,7 @@ function update(LeavingPlayer)
|
||||||
end
|
end
|
||||||
|
|
||||||
function keepAlive(LeavingPlayer)
|
function keepAlive(LeavingPlayer)
|
||||||
local success, result = pcall(function()
|
pcall(function()
|
||||||
game:GetService("HttpService").HttpEnabled = true
|
game:GetService("HttpService").HttpEnabled = true
|
||||||
|
|
||||||
local body = game:GetService("HttpService"):JSONEncode({
|
local body = game:GetService("HttpService"):JSONEncode({
|
||||||
|
|
@ -41,12 +41,6 @@ function keepAlive(LeavingPlayer)
|
||||||
|
|
||||||
return game:GetService("HttpService"):PostAsync("https://dungblx.cf/API/KeepAlive", body)
|
return game:GetService("HttpService"):PostAsync("https://dungblx.cf/API/KeepAlive", body)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
if not success then
|
|
||||||
local Hint = Instance.new("Hint")
|
|
||||||
Hint.Text = result
|
|
||||||
Hint.Parent = workspace
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-----------------------------------END UTILITY FUNCTIONS -------------------------
|
-----------------------------------END UTILITY FUNCTIONS -------------------------
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue