mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 19:47:47 +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,13 +1,13 @@
|
||||
/mob/verb/up()
|
||||
set name = "Move Upwards"
|
||||
set category = "IC"
|
||||
set category = "IC.Game"
|
||||
|
||||
if(zMove(UP))
|
||||
to_chat(src, span_notice("You move upwards."))
|
||||
|
||||
/mob/verb/down()
|
||||
set name = "Move Down"
|
||||
set category = "IC"
|
||||
set category = "IC.Game"
|
||||
|
||||
if(zMove(DOWN))
|
||||
to_chat(src, span_notice("You move down."))
|
||||
|
||||
@@ -211,7 +211,7 @@
|
||||
/mob/living/verb/climb_down()
|
||||
set name = "Climb down wall"
|
||||
set desc = "attempt to climb down the wall you are standing on, in direction you're looking"
|
||||
set category = "IC"
|
||||
set category = "IC.Game"
|
||||
|
||||
var/fall_chance = 0 //Increased if we can't actually climb
|
||||
var/turf/our_turf = get_turf(src) //floor we're standing on
|
||||
|
||||
Reference in New Issue
Block a user