Merge pull request #1058 from SkyMarshal/BugFixes

Made req_access work like req_one_access used to; req_combined_access is now used for when you need more than one type of access to be checked together. Adjusted maps to reflect this.
This commit is contained in:
Hawk-v3
2012-05-14 16:46:22 -07:00
5 changed files with 95 additions and 88 deletions
+1 -2
View File
@@ -2267,8 +2267,7 @@ var/global/BSACooldown = 0
if("maint_access_engiebrig")
for(var/obj/machinery/door/airlock/maintenance/M in world)
if (access_maint_tunnels in M.req_access)
M.req_access = list()
M.req_one_access = list(access_brig,access_engine)
M.req_access = list(access_brig,access_engine)
message_admins("[key_name_admin(usr)] made all maint doors engineering and brig access-only.")
if("infinite_sec")
var/datum/job/J = job_master.GetJob("Security Officer")