Merge pull request #20065 from Shadowlight213/ircsay

Adds adds the ability to get a list of admins and their status from irc.
This commit is contained in:
oranges
2016-08-26 08:49:50 +12:00
committed by GitHub
2 changed files with 22 additions and 2 deletions
+15
View File
@@ -170,3 +170,18 @@
message["crossmessage"] = type
world.Export("[global.cross_address]?[list2params(message)]")
/proc/ircadminwho()
var/msg = "Admins: "
for(var/client/C in admins)
msg += "[C] "
if(C.holder.fakekey)
msg += "(Stealth)"
if(C.is_afk())
msg += "(AFK)"
msg += ", "
return msg