TG: Updated DNA modifier consoles so they work in any direction.

Updated adminwho so the plebs can see ranks.
Removed the admin message from view range changes.
Revision: r3545
Author: 	 petethegoat
This commit is contained in:
Erthilo
2012-05-10 00:20:01 +01:00
parent 165b516949
commit 79758083fc
2 changed files with 6 additions and 3 deletions

View File

@@ -758,7 +758,7 @@
// if (!M.client)
// for(var/mob/dead/observer/ghost in world)
// if(ghost.corpse == M && ghost.client)
// ghost << "<b><font color = #330033><font size = 3>Your corpse has been placed into a cloning scanner. Return to your body if you want to be ressurected/cloned!</b> (Verbs -> Ghost -> Re-enter corpse)</font color>"
// ghost << "<b><font color = #330033><font size = 3>Your corpse has been placed into a cloning scanner. Return to your body if you want to be resurrected/cloned!</b> (Verbs -> Ghost -> Re-enter corpse)</font color>"
// break
del(G)
return
@@ -853,7 +853,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

View File

@@ -33,7 +33,7 @@
if(usr.client.holder)
usr << "[M.key] is a [M.client.holder.rank][M.client.stealth ? " <i>(as [M.client.fakekey])</i>" : ""]"
else if(!M.client.stealth && (M.client.holder.level != -3))
usr << "\t[pick(nobles)] [M.client]"
usr << "\t[pick(nobles)] [M.client] is a [M.client.holder.rank]"
var/list/nobles = list("Baron","Bookkeeper","Captain of the Guard","Chief Medical Dwarf","Count","Dungeon Master","Duke","General","Mayor","Outpost Liaison","Sheriff","Champion")