/
githubmirror
/
vgstation13
Обзор
Документация
Войти
/
githubmirror
/
vgstation13
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.1.4
code/ATMOSPHERICS/mapdebugging.dm
16 строк
629 B
Hawk-v3
Fix for tab issuse, fixed all pipes reported by the algo.
21 апр 2012, 21:28
21 апр 2012, 21:28
fd330d7
Код
Авторство
О чём код?
client/verb/discon_pipes() set name = "Show Disconnected Pipes" set category = "Debug" for(var/obj/machinery/atmospherics/pipe/simple/P in world) if(!P.node1 || !P.node2) usr << "[P], [P.x], [P.y], [P.z], [P.loc.loc]" for(var/obj/machinery/atmospherics/pipe/manifold/P in world) if(!P.node1 || !P.node2 || !P.node3) usr << "[P], [P.x], [P.y], [P.z], [P.loc.loc]" for(var/obj/machinery/atmospherics/pipe/manifold4w/P in world) if(!P.node1 || !P.node2 || !P.node3 || !P.node4) usr << "[P], [P.x], [P.y], [P.z], [P.loc.loc]" //With thanks to mini. Check before use, uncheck after. Do Not Use on a live server.