Files
Aurora.3/code/modules/ventcrawl/ventcrawl_verb.dm
Fluffy c25c8b6a37 Last editorconfig fixup (#17782)
* one

* two

* three

* fsdsdf
2023-11-20 18:22:42 +00:00

10 lines
262 B
Plaintext

/mob/living/proc/ventcrawl()
set name = "Crawl through Vent"
set desc = "Enter an air vent and crawl through the pipe system."
set category = "Abilities"
if(paralysis || restrained())
return
var/pipe = start_ventcrawl()
if(pipe)
handle_ventcrawl(pipe)