Skip to content

Commit

Permalink
ihateCMOs
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveloopers committed Jun 23, 2024
1 parent 7c03c26 commit 0b39c89
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion code/datums/skills/uscm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ COMMAND STAFF
SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED,
SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR,
SKILL_SURGERY = SKILL_SURGERY_TRAINED,
SKILL_RESEARCH = SKILL_RESEARCH_TRAINED,
SKILL_RESEARCH = SKILL_RESEARCH_DEFAULT,
SKILL_POLICE = SKILL_POLICE_FLASH,
SKILL_FIREMAN = SKILL_FIREMAN_TRAINED,
SKILL_JTAC = SKILL_JTAC_EXPERT,
Expand Down
4 changes: 2 additions & 2 deletions code/modules/clothing/glasses/glasses.dm
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@
actions_types = list(/datum/action/item_action/toggle)
toggleable = TRUE
flags_inventory = COVEREYES
req_skill = SKILL_RESEARCH
req_skill_level = SKILL_RESEARCH_TRAINED
req_skill = SKILL_MEDICAL
req_skill_level = SKILL_MEDICAL_DOCTOR
clothing_traits = list(TRAIT_REAGENT_SCANNER)

/obj/item/clothing/glasses/science/prescription
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@
if(!skillcheck(user, SKILL_RESEARCH, SKILL_RESEARCH_TRAINED))
to_chat(user, SPAN_WARNING("You have no idea how to use this."))
return
if(user.job != JOB_RESEARCHER)
to_chat(user, SPAN_WARNING("Access denied."))
return
tgui_interact(user)

/obj/structure/machinery/xenoanalyzer/tgui_interact(mob/user, datum/tgui/ui)
Expand Down

0 comments on commit 0b39c89

Please sign in to comment.