/
githubmirror
/
vgstation13
Обзор
Документация
Войти
/
githubmirror
/
vgstation13
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.02
code/ATMOSPHERICS/mapdebugging.dm
16 строк
677 B
PJB3005
Adds a to_chat() proc, to pave the way to a non shit chat.
25 ноя 2015, 17:55
25 ноя 2015, 17:55
99bf59d
Код
Авторство
О чём код?
client/verb/discon_pipes() set name = "Show Disconnected Pipes" set category = "Debug" for(var/obj/machinery/atmospherics/pipe/simple/P in atmos_machines) if(!P.node1 || !P.node2) to_chat(usr, "[P], [P.x], [P.y], [P.z], [P.loc.loc]") for(var/obj/machinery/atmospherics/pipe/manifold/P in atmos_machines) if(!P.node1 || !P.node2 || !P.node3) to_chat(usr, "[P], [P.x], [P.y], [P.z], [P.loc.loc]") for(var/obj/machinery/atmospherics/pipe/manifold4w/P in atmos_machines) if(!P.node1 || !P.node2 || !P.node3 || !P.node4) to_chat(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.