Skip to content

Commit

Permalink
access lock
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed May 22, 2024
1 parent 139fe26 commit 16dad27
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/modules/shuttle/computers/escape_pod_computer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
/obj/structure/machinery/computer/shuttle/escape_pod_panel/attack_hand(mob/user)
if(..())
return
if(!allowed(user))
to_chat(user, SPAN_WARNING("Access denied!"))
return
tgui_interact(user)

/obj/structure/machinery/computer/shuttle/escape_pod_panel/tgui_interact(mob/user, datum/tgui/ui)
Expand Down Expand Up @@ -86,6 +89,7 @@
. = TRUE

/obj/structure/machinery/computer/shuttle/escape_pod_panel/liaison
req_access = list(ACCESS_WY_GENERAL)
launch_without_evac = TRUE

//=========================================================================================
Expand Down

0 comments on commit 16dad27

Please sign in to comment.