From 0b39c89da557ca824ff7f926cc8e232d96907a0c Mon Sep 17 00:00:00 2001 From: iloveloopers Date: Sat, 22 Jun 2024 22:51:29 -0400 Subject: [PATCH] ihateCMOs --- code/datums/skills/uscm.dm | 2 +- code/modules/clothing/glasses/glasses.dm | 4 ++-- .../reagents/chemistry_machinery/xenomorph_analyzer.dm | 3 --- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/code/datums/skills/uscm.dm b/code/datums/skills/uscm.dm index f694e8789dcd..dde20492c975 100644 --- a/code/datums/skills/uscm.dm +++ b/code/datums/skills/uscm.dm @@ -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, diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index 88605cb3b792..50d8660279e5 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -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 diff --git a/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm b/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm index 294f19b18844..5bf6561b28f4 100644 --- a/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm +++ b/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm @@ -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)