From 4144a085d3e8681374df317be5bdf0e38b19cad2 Mon Sep 17 00:00:00 2001 From: BigHairyDaddy1985 <138337060+BigHairyDaddy1985@users.noreply.github.com> Date: Sun, 2 Jul 2023 02:14:41 +0300 Subject: [PATCH] fix doctor skillset fixed one small typo where medicine was written instead of medical (as defined in the skills code) also set both anatomy and medicine to EXPERIENCED because that's what an experienced surgeon would be. --- mods/persistence/modules/chargen/defines/roles.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/persistence/modules/chargen/defines/roles.dm b/mods/persistence/modules/chargen/defines/roles.dm index 2947ea0f30c..2e7437e6b78 100644 --- a/mods/persistence/modules/chargen/defines/roles.dm +++ b/mods/persistence/modules/chargen/defines/roles.dm @@ -87,8 +87,8 @@ name = "Frontier Surgeon" desc = "You have a capable hand at surgery and medicine plus basic experience in Chemistry and EVA operation. As a Frontier Surgeon you will fight to keep your patients alive and clone those who cant be saved." skills = list( - SKILL_ANATOMY = 2, - SKILL_MEDICINE = 2, + SKILL_ANATOMY = 3, + SKILL_MEDICAL = 3, SKILL_CHEMISTRY = 1, SKILL_EVA = 1 ) @@ -359,4 +359,4 @@ remaining_points_offset = 0 text_book_type = /obj/item/book/skill/medical/medicine/expert -*/ \ No newline at end of file +*/