Files
vgstation13/code/modules/admin/verbs/atmosdebug.dm
baloh.matevz 282c9e9474 Changed R'n'D again. I forgot I could, oh I dunno, move it to the left...
Anyway hoping this design is less sucky... I would like to keep the table facing the hallway and not the access airlocks.

Image:
http://www.kamletos.si/rd%20remapped%20again.png

Also, check plumbing is now a part of the mapping commands. Use "mapping debug" as game master to activate.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2117 316c924e-a436-60f5-8080-3fe189b3f50e
2011-09-05 00:51:57 +00:00

11 lines
391 B
Plaintext

/client/proc/atmosscan()
set category = "Mapping"
set name = "Check Plumbing"
if(!src.authenticated || !src.holder)
src << "Only administrators may use this command."
return
for (var/obj/machinery/atmospherics/plumbing in world)
if (plumbing.nodealert)
usr << "Unconnected [plumbing.name] located at [plumbing.x],[plumbing.y],[plumbing.z] ([get_area(plumbing.loc)])"