Stops maintenance drones from clicking stuff while ventcrawling (#14415)

* Adds 'is_ventcrawling' as a mob define

* General cleanup

* Halts 'ClickOn' for borgs if ventcrawling

* Removes ctrl-clicking fire alarms

* Missed a var

Only used in the ctrl clicking thing, so bye bye
This commit is contained in:
SabreML
2020-09-25 21:16:01 +01:00
committed by GitHub
parent e64bdb02c1
commit 803f0d5f8d
6 changed files with 61 additions and 55 deletions
+2 -2
View File
@@ -514,10 +514,10 @@ GLOBAL_LIST_INIT(ventcrawl_machinery, list(/obj/machinery/atmospherics/unary/ven
/mob/living/update_pipe_vision()
if(pipes_shown.len)
if(!istype(loc, /obj/machinery/atmospherics))
if(!is_ventcrawling(src))
remove_ventcrawl()
else
if(istype(loc, /obj/machinery/atmospherics))
if(is_ventcrawling(src))
add_ventcrawl(loc)