[MIRROR] admin verb to modify shift end time (#10573)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-04-02 05:27:04 -07:00
committed by GitHub
parent e67b085fc5
commit fb5b0d3d7a
3 changed files with 24 additions and 0 deletions

View File

@@ -711,3 +711,13 @@
if("Simple Mob")
CONFIG_SET(flag/allow_simple_mob_recolor, !CONFIG_GET(flag/allow_simple_mob_recolor))
to_chat(usr, "You have [CONFIG_GET(flag/allow_simple_mob_recolor) ? "enabled" : "disabled"] newly spawned simple mobs to spawn with the recolour verb")
/client/proc/modify_shift_end()
set name = "Modify Shift End"
set desc = "Modifies the hard shift end time."
set category = "Server.Game"
if(!check_rights_for(src, R_ADMIN|R_EVENT|R_SERVER))
return
transfer_controller.modify_hard_end(src)