var/fakekey; var/ooccolor; var/sound_adminhelp moved from /client to /datum/admins. These settings will now persist through a round even through logouts.

var/stealth merged into var/fakekey as it was superfluous.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4753 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
elly1989@rocketmail.com
2012-09-25 13:09:43 +00:00
parent b4815552ba
commit 9813d2bbec
13 changed files with 67 additions and 66 deletions
+9 -10
View File
@@ -8,13 +8,18 @@
var/list/admin_datums = list()
/datum/admins
var/rank = null
var/client/owner = null
var/state = null //state = 1 for playing //state = 2 for observing
var/level = null
var/rank = null
var/client/owner = null
var/state = null //state = 1 for playing //state = 2 for observing
var/level = null
// var/permissions = 0
// var/stealth = 0
var/fakekey = null
var/ooccolor = "#b82e00"
var/sound_adminhelp = 0 //If set to 1 this will play a sound when adminhelps are received.
var/datum/marked_datum
var/admincaster_screen = 0 //See newscaster.dm under machinery for a full description
@@ -23,14 +28,8 @@ var/list/admin_datums = list()
var/admincaster_signature //What you'll sign the newsfeeds as
/datum/admins/New(initial_rank)
// if(!istype(C))
// world.log << "## WARNING: [type] created with no client/C argument"
// del(src)
// return
// C.holder = src
admincaster_signature = "Nanotrasen Officer #[rand(0,9)][rand(0,9)][rand(0,9)]"
rank = initial_rank
// admin_list |= C
..()
/datum/admins/Del()