mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-05 23:11:52 +00:00
Fixes a pesky compile error in my last commit.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3756 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
16
code/game/objects/devices/PDA/chatroom.dm
Normal file
16
code/game/objects/devices/PDA/chatroom.dm
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
@@ -354,7 +354,6 @@
|
||||
#include "code\game\chemistry.dm"
|
||||
#include "code\game\communications.dm"
|
||||
#include "code\game\dna.dm"
|
||||
#include "code\game\dna_mutations.dm"
|
||||
#include "code\game\hud.dm"
|
||||
#include "code\game\landmarks.dm"
|
||||
#include "code\game\master_controller.dm"
|
||||
@@ -655,7 +654,9 @@
|
||||
#include "code\game\objects\devices\scanners.dm"
|
||||
#include "code\game\objects\devices\shields.dm"
|
||||
#include "code\game\objects\devices\taperecorder.dm"
|
||||
#include "code\game\objects\devices\traitordevices.dm"
|
||||
#include "code\game\objects\devices\PDA\cart.dm"
|
||||
#include "code\game\objects\devices\PDA\chatroom.dm"
|
||||
#include "code\game\objects\devices\PDA\PDA.dm"
|
||||
#include "code\game\objects\devices\PDA\radio.dm"
|
||||
#include "code\game\objects\items\apc_frame.dm"
|
||||
|
||||
Reference in New Issue
Block a user