Files
Aurora.3/code/modules/ventcrawl/ventcrawl_verb.dm
Bedshaped d8b656742c Ventcrawl Fixes (#916)
Fixes #897 
Fixes #898 
Fixes #899
2016-09-13 15:46:59 +03:00

9 lines
261 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)