mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
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
11 lines
391 B
Plaintext
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)])"
|