mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 03:33:21 +00:00
Flashlights Cigs/lighters Solars RCDs can no longer build airlocks on doors Airlocks now smash glass that is under them when they close AI sat firewall that is not really quite a firewall removed The solars will no longer update if they lack a controler Cut down on machines that don't actually do anything like fake sleepers and shuttle engines There is still a few shuttle engines around and I have no idea where, my map was already corrupted once by this so I am just leaving the define in for now. After a talk with some of the head coders Cyborgs can no longer be traitors at round start Some of the off Z1 areas cleaned up git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2028 316c924e-a436-60f5-8080-3fe189b3f50e
46 lines
1018 B
Plaintext
46 lines
1018 B
Plaintext
/client
|
|
//START Admin Things
|
|
//This should be changed to a datum
|
|
var/obj/admins/holder = null
|
|
var/buildmode = 0
|
|
var/stealth = 0
|
|
var/fakekey = null
|
|
//Hosts can change their color
|
|
var/ooccolor = "#b82e00"
|
|
|
|
//END Admin Things
|
|
|
|
//Key auth things
|
|
authenticate = 0
|
|
var/authenticated = 0
|
|
var/authenticating = 0
|
|
|
|
var/listen_ooc = 1
|
|
var/move_delay = 1
|
|
var/moving = null
|
|
var/adminobs = null
|
|
var/deadchat = 0.0
|
|
var/changes = 0
|
|
var/canplaysound = 1
|
|
var/ambience_playing = null
|
|
var/no_ambi = 0
|
|
var/area = null
|
|
var/played = 0
|
|
var/team = null
|
|
var/warned = 0
|
|
var/karma = 0
|
|
var/karma_spent = 0
|
|
|
|
|
|
var/midis = 1 //Check if midis should be played for someone -- Urist
|
|
var/bubbles = 1 //Check if bubbles should be displayed for someone -- Doohl
|
|
var/be_alien = 0 //Check if that guy wants to be an alien -- Urist
|
|
|
|
|
|
var/vote = null
|
|
var/showvote = null
|
|
|
|
|
|
|
|
// comment out the line below when debugging locally to enable the options & messages menu
|
|
control_freak = 1 |