mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-12 00:20:42 +01:00
c25c8b6a37
* one * two * three * fsdsdf
10 lines
262 B
Plaintext
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)
|