mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-25 17:02:04 +00:00
- The folders themselves are now finished - Next I'll go through each file and organize them - Lastly I'll start pulling the object definitions out of /code/defines/ and put them into their respective files. **Note to committers** Make sure the .dme file updates when you update to this revision. If necessary delete the .dme and svn-update. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4546 316c924e-a436-60f5-8080-3fe189b3f50e
17 lines
523 B
Plaintext
17 lines
523 B
Plaintext
var/list/chatrooms = list()
|
|
|
|
/datum/chatroom
|
|
var/name = "Generic Chatroom"
|
|
var/list/logged_in = list()
|
|
var/list/logs = list() // chat logs
|
|
var/list/banned = list() // banned users
|
|
var/list/whitelist = list() // whitelisted users
|
|
var/list/muted = list()
|
|
var/topic = "" // topic message for the chatroom
|
|
var/password = "" // blank for no password.
|
|
var/operator = "" // name of the operator
|
|
|
|
/datum/chatroom/proc/attempt_connect(var/obj/item/device/pda/device, var/obj/password)
|
|
if(!device)
|
|
return
|