diff --git a/code/modules/admin/permissionverbs/permsission lists.dm b/code/modules/admin/permissionverbs/permsission lists.dm index 252e9b90..49001093 100644 --- a/code/modules/admin/permissionverbs/permsission lists.dm +++ b/code/modules/admin/permissionverbs/permsission lists.dm @@ -395,7 +395,7 @@ var/list/admin_verbs_duty = list( /client/proc/spawn_duty_officer, /client/proc/cmd_admin_create_centcom_report, /client/proc/cmd_duty_say, - /client/verb/returntobody + /client/proc/returntobody ) /client/proc/add_admin_verbs() diff --git a/code/modules/aurora/duty officer.dm b/code/modules/aurora/duty officer.dm index 4702a0d0..9a104d65 100644 --- a/code/modules/aurora/duty officer.dm +++ b/code/modules/aurora/duty officer.dm @@ -140,10 +140,10 @@ W.registered_name = M.real_name M.equip_if_possible(W, slot_wear_id) - verbs += /client/verb/returntobody + verbs += /client/proc/returntobody break -/client/verb/returntobody() +/client/proc/returntobody() set name = "Return to mob" set desc = "The Duty is done, return to your original mob" set category = "Special Verbs" @@ -151,7 +151,7 @@ if(!check_rights(0)) return if(!mob.mind || mob.mind.special_role != "Duty Officer") - verbs -= /client/verb/returntobody + verbs -= /client/proc/returntobody return if(!holder) return @@ -164,7 +164,7 @@ if(holder.original_mob) if(holder.original_mob == M) - verbs -= /client/verb/returntobody + verbs -= /client/proc/returntobody return holder.original_mob.key = key holder.original_mob = null @@ -174,5 +174,5 @@ mob.mind.admin_mob_placeholder = null else mob.ghostize(0) - verbs -= /client/verb/returntobody + verbs -= /client/proc/returntobody del(M) \ No newline at end of file