mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 19:15:11 +01:00
Server maint subsystem (#16518)
* upports server maint subsystem * fix runtime in admin z narrate * . * sorts them verbs * . * . * Update code/controllers/subsystems/statpanel.dm Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> * Update code/controllers/subsystems/server_maint.dm Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> --------- Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
This commit is contained in:
@@ -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"
|
||||
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"
|
||||
set category = "Abilities.General"
|
||||
set src = usr.loc
|
||||
var/obj/machinery/atmospherics/target = check_ventcrawl(GetBelow(loc))
|
||||
if(target) ventcrawl_to(usr, target, DOWN)
|
||||
@@ -21,4 +21,4 @@
|
||||
return node1
|
||||
if(node2 in target)
|
||||
return node2
|
||||
return
|
||||
return
|
||||
|
||||
@@ -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"
|
||||
set category = "Abilities.General"
|
||||
var/pipe = start_ventcrawl()
|
||||
if(pipe)
|
||||
handle_ventcrawl()
|
||||
|
||||
Reference in New Issue
Block a user