diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm index 02bd6052992..0b7677aab40 100644 --- a/code/datums/datacore.dm +++ b/code/datums/datacore.dm @@ -265,7 +265,7 @@ proc/get_id_photo(var/mob/living/carbon/human/H) clothes_s = new /icon('icons/mob/uniform.dmi', "engine_s") clothes_s.Blend(new /icon('icons/mob/feet.dmi', "orange"), ICON_UNDERLAY) clothes_s.Blend(new /icon('icons/mob/belt.dmi', "utility"), ICON_OVERLAY) - if("Atmospheric Technician") + if("Life Support Specialist") clothes_s = new /icon('icons/mob/uniform.dmi', "atmos_s") clothes_s.Blend(new /icon('icons/mob/feet.dmi', "black"), ICON_UNDERLAY) clothes_s.Blend(new /icon('icons/mob/belt.dmi', "utility"), ICON_OVERLAY) diff --git a/code/game/gamemodes/steal_items.dm b/code/game/gamemodes/steal_items.dm index 8672a84b827..0b712024785 100644 --- a/code/game/gamemodes/steal_items.dm +++ b/code/game/gamemodes/steal_items.dm @@ -56,7 +56,7 @@ /datum/theft_objective/magboots name = "a pair of magboots" typepath = /obj/item/clothing/shoes/magboots - protected_jobs = list("Station Engineer", "Atmospheric Technician", "Chief Engineer") + protected_jobs = list("Station Engineer", "Life Support Specialist", "Chief Engineer") /datum/theft_objective/blueprints name = "the station blueprints" diff --git a/code/game/jobs/job/engineering.dm b/code/game/jobs/job/engineering.dm index e4fc0409edc..cdbe608e4f5 100644 --- a/code/game/jobs/job/engineering.dm +++ b/code/game/jobs/job/engineering.dm @@ -77,7 +77,7 @@ /datum/job/atmos - title = "Atmospheric Technician" + title = "Life Support Specialist" flag = ATMOSTECH department_flag = ENGSEC faction = "Station" @@ -87,7 +87,7 @@ selection_color = "#fff5cc" access = list(access_eva, access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels, access_external_airlocks, access_construction, access_atmospherics) minimal_access = list(access_eva, access_atmospherics, access_maint_tunnels, access_emergency_storage, access_construction) - + alt_titles = list("Atmospheric Technician") equip(var/mob/living/carbon/human/H) if(!H) return 0 diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index 9da435b05bf..fe28cf8f30a 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -71,7 +71,7 @@ var/list/command_positions = list( var/list/engineering_positions = list( "Chief Engineer", "Station Engineer", - "Atmospheric Technician", + "Life Support Specialist", ) diff --git a/code/modules/admin/newbanjob.dm b/code/modules/admin/newbanjob.dm index 00ee46de497..7a879468d85 100644 --- a/code/modules/admin/newbanjob.dm +++ b/code/modules/admin/newbanjob.dm @@ -78,7 +78,7 @@ var/savefile/Banlistjob return 1 if(rank == "Engineering") AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Station Engineer") - AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Atmospheric Technician") + AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Life Support Specialist") AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Chief Engineer") AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Cyborg") return 1 @@ -100,7 +100,7 @@ var/savefile/Banlistjob AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Chief Engineer") return 1 if(rank == "CE_Atmospheric_Tech") - AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Atmospheric Technician") + AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Life Support Specialist") AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Chief Engineer") return 1 if(rank == "CE_Shaft_Miner")