Give corp reps the ability to force holopad calls (#21482)

Done on a request. The reasoning for the bridge access was so they could
get access to the meeting room and the command break room, which need
them to walk through the bridge itself. The access was added to the
doors, so they can't do or open anything that didn't already have their
access set to it.
This commit is contained in:
Casper3667
2025-10-30 16:57:56 +00:00
committed by GitHub
parent 601f395b73
commit 3652f3f5db
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -143,7 +143,7 @@ Possible to do for anyone motivated enough:
/obj/machinery/hologram/holopad/proc/has_command_auth(var/mob/user)
var/obj/item/card/id/I = user.GetIdCard()
if(I && (ACCESS_HEADS in I.access))
if(I && (ACCESS_HEADS in I.access) || I && (ACCESS_LAWYER in I.access))
return TRUE
return FALSE
+6
View File
@@ -0,0 +1,6 @@
author: TheGreyWolf
delete-after: True
changes:
- rscadd: "Corporate liaisons can now force holocalls."