mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 20:47:43 +01:00
removes the last of the old job controller (#19344)
* removes the last of the old job controller * . * . * . * . * . * Update admin_verbs.dm * Update admin_verbs.dm --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
co-authored by
Cameron Lennox
parent
a3b7c0e836
commit
12c5adeeb3
@@ -142,7 +142,7 @@
|
||||
|
||||
/obj/item/card/id/Initialize(mapload)
|
||||
. = ..()
|
||||
var/datum/job/J = GLOB.job_master.GetJob(rank)
|
||||
var/datum/job/J = SSjob.get_job(rank)
|
||||
if(J)
|
||||
access = J.get_access()
|
||||
|
||||
|
||||
@@ -253,7 +253,7 @@
|
||||
name = "[initial(name)] for [recipient.name] ([current_title])"
|
||||
recipient_ref = WEAKREF(recipient)
|
||||
|
||||
var/datum/job/this_job = SSjob.name_occupations[recipient.assigned_role]
|
||||
var/datum/job/this_job = SSjob.occupations_by_name[recipient.assigned_role]
|
||||
|
||||
var/list/goodies = generic_goodies
|
||||
if(this_job)
|
||||
|
||||
@@ -170,7 +170,7 @@
|
||||
new_character.mind.loaded_from_ckey = picked_ckey
|
||||
new_character.mind.loaded_from_slot = picked_slot
|
||||
|
||||
GLOB.job_master.EquipRank(new_character, JOB_MAINT_LURKER, 1)
|
||||
SSjob.equip_rank(new_character, JOB_MAINT_LURKER, 1)
|
||||
|
||||
for(var/lang in new_character.client.prefs.alternate_languages)
|
||||
var/datum/language/chosen_language = GLOB.all_languages[lang]
|
||||
|
||||
@@ -132,7 +132,7 @@
|
||||
new_character.mind.loaded_from_ckey = picked_ckey
|
||||
new_character.mind.loaded_from_slot = picked_slot
|
||||
|
||||
GLOB.job_master.EquipRank(new_character, JOB_MAINT_LURKER, 1)
|
||||
SSjob.equip_rank(new_character, JOB_MAINT_LURKER, 1)
|
||||
|
||||
for(var/lang in new_character.client.prefs.alternate_languages)
|
||||
var/datum/language/chosen_language = GLOB.all_languages[lang]
|
||||
|
||||
Reference in New Issue
Block a user