diff --git a/code/game/jobs/job/offduty_vr.dm b/code/game/jobs/job/offduty_vr.dm index 39b0f98212..8d3772297b 100644 --- a/code/game/jobs/job/offduty_vr.dm +++ b/code/game/jobs/job/offduty_vr.dm @@ -60,7 +60,7 @@ timeoff_factor = -1 total_positions = -1 faction = "Station" - departments = list(DEPARTMENT_SCIENCE) + departments = list(DEPARTMENT_RESEARCH) supervisors = "nobody! Enjoy your time off" selection_color = "#633D63" access = list(access_maint_tunnels) diff --git a/code/game/jobs/job/special_vr.dm b/code/game/jobs/job/special_vr.dm index d154117db1..c196a8209c 100644 --- a/code/game/jobs/job/special_vr.dm +++ b/code/game/jobs/job/special_vr.dm @@ -1,6 +1,6 @@ /datum/job/centcom_officer //For Business title = "CentCom Officer" - departments = list(DEPARTMENT_CENTCOM) + departments = list("Central Command") head_position = 1 faction = "Station" total_positions = 2 diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 464d22f15b..2e1816f243 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -693,7 +693,7 @@ joblist += temp.title //VOREStation Edit Start if("explorationdept") - for(var/jobPos in planet_positions) + for(var/jobPos in SSjob.get_job_titles_in_department(DEPARTMENT_PLANET)) if(!jobPos) continue var/datum/job/temp = job_master.GetJob(jobPos) if(!temp) continue