proc/GlobalBan()
world<<"<font color = red><b>GM: </font></b><b>Updating Global Ban List"
var/http = world.Export("http://www.gohangames.webcindario.com/global ban.txt")
if(!http)
usr << "Failed to connect."
return
var/G = http["CONTENT"]
if(G)
usr << html_encode(file2text(G))
world<<"<font color = red><b>GM: </font></b><b>Global Ban List Succesfully Updated"
for(var/mob/M in world)
if(M.key in G)
M<<"Banned. Stfu Test =D"
Problem description: Well, for Some Reason The Message of M<<"Banned. Stfu Test =D" Doesnt Appear.