TG: Fixes a pesky compile error in my last commit.

Revision: r3756
Author: 	 vageyenaman
This commit is contained in:
Erthilo
2012-06-23 15:10:49 +01:00
parent dfb6676ebb
commit 13aa7558a6
5 changed files with 76 additions and 3 deletions
+16
View 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
@@ -232,7 +232,6 @@ CRITTER GRENADE
else
if (M.ear_damage >= 5)
M << "\red Your ears start to ring!"
M.update_icons()
prime() // Prime now just handles the two loops that query for people in lockers and people who can see it.
var/turf/T = get_turf(src)