From a6ac75aee8de10aa3d65fcb73a2ee52a75e1e696 Mon Sep 17 00:00:00 2001 From: "d_h2005@yahoo.com" Date: Sat, 8 Dec 2012 03:41:59 +0000 Subject: [PATCH] Adds a fun new button to the Secrets panel, Egalitarian Station. Hitting it removes access requirements from airlocks on the station, with the exception of private quarters, the bridge, and the prison. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5284 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/admin/admin.dm | 1 + code/modules/admin/topic.dm | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 52fed493fe..b801ebd109 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -440,6 +440,7 @@ var/global/floorIsLava = 0 Make all players retarded
Make all items look like guns
Japanese Animes Mode
+ Egalitarian Station Mode
Move Administration Shuttle
Move Ferry
Move Alien Dinghy
diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index cb7a05960b..2120dacf59 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -2082,6 +2082,15 @@ W.color = "schoolgirl" message_admins("[key_name_admin(usr)] activated Japanese Animes mode") world << sound('sound/AI/animes.ogg') + if("eagles")//SCRAW + feedback_inc("admin_secrets_fun_used",1) + feedback_add_details("admin_secrets_fun_used","EgL") + for(var/obj/machinery/door/airlock/W in world) + if(W.z == 1 && !istype(get_area(W), /area/bridge) && !istype(get_area(W), /area/crew_quarters) && !istype(get_area(W), /area/security/prison)) + W.req_access = list() + message_admins("[key_name_admin(usr)] activated Egalitarian Station mode") + command_alert("Centcomm airlock control override activated. Please take this time to get acquainted with your coworkers.") + world << sound('sound/AI/commandreport.ogg') if("dorf") feedback_inc("admin_secrets_fun_used",1) feedback_add_details("admin_secrets_fun_used","DF")