Skip to content

Commit

Permalink
define number comments
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed Feb 26, 2024
1 parent d5a2897 commit 6f123af
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions code/game/machinery/ARES/ARES_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -207,29 +207,29 @@ GLOBAL_LIST_INIT(maintenance_categories, list(

/obj/structure/machinery/computer/proc/ares_auth_to_text(access_level)
switch(access_level)
if(ARES_ACCESS_LOGOUT)//0
if(ARES_ACCESS_LOGOUT)
return "Logged Out"
if(ARES_ACCESS_BASIC)//1
if(ARES_ACCESS_BASIC)
return "Authorized"
if(ARES_ACCESS_COMMAND)//2
if(ARES_ACCESS_COMMAND)
return "[MAIN_SHIP_NAME] Command"
if(ARES_ACCESS_JOE)//3
if(ARES_ACCESS_JOE)
return "Working Joe"
if(ARES_ACCESS_CORPORATE)//4
if(ARES_ACCESS_CORPORATE)
return "Weyland-Yutani"
if(ARES_ACCESS_SENIOR)//5
if(ARES_ACCESS_SENIOR)
return "[MAIN_SHIP_NAME] Senior Command"
if(ARES_ACCESS_CE)//6
if(ARES_ACCESS_CE)
return "Chief Engineer"
if(ARES_ACCESS_SYNTH)//7
if(ARES_ACCESS_SYNTH)
return "USCM Synthetic"
if(ARES_ACCESS_CO)//8
if(ARES_ACCESS_CO)
return "[MAIN_SHIP_NAME] Commanding Officer"
if(ARES_ACCESS_HIGH)//9
if(ARES_ACCESS_HIGH)
return "USCM High Command"
if(ARES_ACCESS_WY_COMMAND)//10
if(ARES_ACCESS_WY_COMMAND)
return "Weyland-Yutani Directorate"
if(ARES_ACCESS_DEBUG)//11
if(ARES_ACCESS_DEBUG)
return "AI Service Technician"


Expand Down

0 comments on commit 6f123af

Please sign in to comment.