mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 17:11:22 +00:00
9 lines
261 B
Plaintext
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) |