diff --git a/code/modules/ghostroles/spawner/human/admin.dm b/code/modules/ghostroles/spawner/human/admin.dm index 4e82203b7d6..3a38e15338d 100644 --- a/code/modules/ghostroles/spawner/human/admin.dm +++ b/code/modules/ghostroles/spawner/human/admin.dm @@ -106,7 +106,7 @@ //Vars related to human mobs outfit = /datum/outfit/admin/nt/odinsec - possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL) + possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_IPC) allow_appearance_change = APPEARANCE_PLASTICSURGERY assigned_role = "Odin Security Officer" @@ -139,7 +139,7 @@ //Vars related to human mobs outfit = /datum/outfit/admin/nt/odindoc - possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL) + possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJARA,SPECIES_UNATHI,SPECIES_IPC) allow_appearance_change = APPEARANCE_PLASTICSURGERY assigned_role = "Odin Medical Doctor" @@ -160,7 +160,7 @@ max_count = 1 outfit = /datum/outfit/admin/nt/odinpharm - possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL) + possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJARA,SPECIES_UNATHI,SPECIES_IPC) allow_appearance_change = APPEARANCE_PLASTICSURGERY assigned_role = "Odin Pharmacist" @@ -181,7 +181,7 @@ max_count = 2 outfit = /datum/outfit/admin/nt/odinchef - possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJARA,SPECIES_UNATHI) + possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJARA,SPECIES_UNATHI,SPECIES_IPC) allow_appearance_change = APPEARANCE_PLASTICSURGERY assigned_role = "Odin Chef" @@ -202,7 +202,7 @@ max_count = 1 outfit = /datum/outfit/admin/nt/odinbartender - possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJARA,SPECIES_UNATHI) + possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJARA,SPECIES_UNATHI,SPECIES_IPC) allow_appearance_change = APPEARANCE_PLASTICSURGERY assigned_role = "Odin Bartender" @@ -222,7 +222,7 @@ max_count = 1 outfit = /datum/outfit/admin/nt/odinjanitor - possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJARA,SPECIES_UNATHI) + possible_species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJARA,SPECIES_UNATHI,SPECIES_IPC) allow_appearance_change = APPEARANCE_PLASTICSURGERY assigned_role = "Sanitation Specialist" diff --git a/html/changelogs/flpfs-odindoc.yml b/html/changelogs/flpfs-odindoc.yml new file mode 100644 index 00000000000..d023d504f54 --- /dev/null +++ b/html/changelogs/flpfs-odindoc.yml @@ -0,0 +1,42 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Flpfs + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Tajara and Unathi can now be doctors and pharmacists at the Odin." + - tweak: "IPCs can now be civil protection, doctors, pharmacists, bartenders, cooks and janitors at the Odin." \ No newline at end of file