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."