diff --git a/code/game/dna.dm b/code/game/dna.dm index 73b8de76a74..554ae81322e 100644 --- a/code/game/dna.dm +++ b/code/game/dna.dm @@ -665,7 +665,7 @@ if (!M.client) for(var/mob/dead/observer/ghost in world) if(ghost.corpse == M && ghost.client) - ghost << "Your corpse has been placed into a cloning scanner. Return to your body if you want to be ressurected/cloned! (Verbs -> Ghost -> Re-enter corpse)" + ghost << "Your corpse has been placed into a cloning scanner. Return to your body if you want to be resurrected/cloned! (Verbs -> Ghost -> Re-enter corpse)" break del(G) return @@ -760,7 +760,10 @@ /obj/machinery/computer/scan_consolenew/New() ..() spawn(5) - src.connected = locate(/obj/machinery/dna_scannernew, get_step(src, WEST)) + for(dir in list(NORTH,EAST,SOUTH,WEST)) + connected = locate(/obj/machinery/dna_scannernew, get_step(src, dir)) + if(!isnull(connected)) + break spawn(250) src.injectorready = 1 return diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm index f0697bbf9ec..6c7ab4db725 100644 --- a/code/game/verbs/who.dm +++ b/code/game/verbs/who.dm @@ -33,4 +33,4 @@ if(usr.client.holder) usr << "[M.key] is a [M.client.holder.rank][M.client.stealth ? " (as [M.client.fakekey])" : ""]" else if(!M.client.stealth) - usr << "\t[M.client]" + usr << "\t[M.client] is a [M.client.holder.rank]" diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 5335d428d7b..84238e516b0 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -750,7 +750,7 @@ Traitors and the like can also be revived with the previous role mostly intact. view = world.view log_admin("[key_name(usr)] changed their view range to [view].") - message_admins("\blue [key_name_admin(usr)] changed their view range to [view].", 1) + //message_admins("\blue [key_name_admin(usr)] changed their view range to [view].", 1) //why? removed by order of XSI feedback_add_details("admin_verb","CVRA") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!