[MIRROR] Server maint subsystem (#9408)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2024-11-04 14:00:41 -07:00
committed by GitHub
parent 4f9bd4462d
commit f72f2f8c89
225 changed files with 689 additions and 683 deletions

View File

@@ -1,7 +1,7 @@
/obj/machinery/atmospherics/pipe/zpipe/up/verb/ventcrawl_move_up()
set name = "Ventcrawl Upwards"
set desc = "Climb up through a pipe."
set category = "Abilities.General" //CHOMPEdit
set category = "Abilities.General"
set src = usr.loc
var/obj/machinery/atmospherics/target = check_ventcrawl(GetAbove(loc))
if(target) ventcrawl_to(usr, target, UP)
@@ -9,7 +9,7 @@
/obj/machinery/atmospherics/pipe/zpipe/down/verb/ventcrawl_move_down()
set name = "Ventcrawl Downwards"
set desc = "Climb down through a pipe."
set category = "Abilities.General" //CHOMPEdit
set category = "Abilities.General"
set src = usr.loc
var/obj/machinery/atmospherics/target = check_ventcrawl(GetBelow(loc))
if(target) ventcrawl_to(usr, target, DOWN)

View File

@@ -1,7 +1,7 @@
/mob/living/proc/ventcrawl()
set name = "Crawl through Vent"
set desc = "Enter an air vent and crawl through the pipe system."
set category = "Abilities.General" //CHOMPEdit
set category = "Abilities.General"
var/pipe = start_ventcrawl()
if(pipe)
handle_ventcrawl()