From 3652f3f5db414d90d5dac4faeeedee844a466acb Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Thu, 30 Oct 2025 17:57:56 +0100 Subject: [PATCH] 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. --- code/game/machinery/hologram.dm | 2 +- html/changelogs/LiaisonPriviledges.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/LiaisonPriviledges.yml diff --git a/code/game/machinery/hologram.dm b/code/game/machinery/hologram.dm index 94f1689be33..a41d4cfb5f8 100644 --- a/code/game/machinery/hologram.dm +++ b/code/game/machinery/hologram.dm @@ -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 diff --git a/html/changelogs/LiaisonPriviledges.yml b/html/changelogs/LiaisonPriviledges.yml new file mode 100644 index 00000000000..63eec00cd26 --- /dev/null +++ b/html/changelogs/LiaisonPriviledges.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Corporate liaisons can now force holocalls."