From d4e20dec8a37d4f252d2c0558f8381f3945f4fce Mon Sep 17 00:00:00 2001 From: Paul Liverman III Date: Mon, 26 Mar 2018 01:04:47 -0700 Subject: [PATCH] updated default proxy IP to use new floating IP of my serve --- check.lua | 2 +- check.moon | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/check.lua b/check.lua index 70bf60c..13b8e61 100644 --- a/check.lua +++ b/check.lua @@ -65,7 +65,7 @@ local start start = function() local data = receive:demand() if not (data.proxy or data.url) then - data.proxy = "http://104.236.139.220:16343" + data.proxy = "http://45.55.113.149:16343" end if not (data.channel) then require("love.system") diff --git a/check.moon b/check.moon index fc47542..54ec091 100644 --- a/check.moon +++ b/check.moon @@ -48,7 +48,7 @@ check = (data) -> start = -> -- data should be a table of information data = receive\demand! - data.proxy = "http://104.236.139.220:16343" unless data.proxy or data.url + data.proxy = "http://45.55.113.149:16343" unless data.proxy or data.url -- channel can be autodetected if not specified unless data.channel