Added color to mcstatus

This commit is contained in:
puffrfish 2012-08-28 02:53:20 -03:00
parent 9b19225f65
commit 6f2226b4cc

View file

@ -54,9 +54,9 @@ def mcstatus(inp, say=None):
# use a loop so we don't have to update it if they add more servers
for server, status in data.items():
if status == "green":
out.append("%s is \x02online\x02" % server)
out.append("%s is \x033\x02online\x02\x03" % server)
else:
out.append("%s is \x02offline\x02" % server)
out.append("%s is \x034\x02offline\x02\x03" % server)
return ", ".join(out) + "."