From 059024cb6162956f6ccfd6d75711fc74418652b9 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Thu, 5 Sep 2013 09:54:43 +1200 Subject: [PATCH] removed test server from minecraft_status --- plugins/minecraft_status.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/minecraft_status.py b/plugins/minecraft_status.py index 7e1ac72..aa3ac51 100755 --- a/plugins/minecraft_status.py +++ b/plugins/minecraft_status.py @@ -15,9 +15,10 @@ def mcstatus(inp): data = json.loads(request.replace("}", "").replace("{", "").replace("]", "}").replace("[", "{")) out = [] + # use a loop so we don't have to update it if they add more servers yes = [] - no = ['luke'] + no = [] for server, status in data.items(): if status == "green": yes.append(server)