moves the last admin verbs (#19346)

* moves the last admin verbs

* .

* Update diagnostics.dm

Co-authored-by: Cameron Lennox <killer65311@gmail.com>

* .

* .

* .

* .

* Fixes jump to mob

* Fixes coordinate jump

* Convo fixes

* Fixes random maps

* yeh

---------

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
Kashargul
2026-04-11 15:04:04 -04:00
committed by GitHub
co-authored by Cameron Lennox
parent 15cdb9088d
commit 5c5ccc4c9f
26 changed files with 406 additions and 758 deletions
+4 -10
View File
@@ -150,18 +150,12 @@ SUBSYSTEM_DEF(plants)
// Debug for testing seed genes.
/client/proc/show_plant_genes()
set category = "Debug.Investigate"
set name = "Show Plant Genes"
set desc = "Prints the round's plant gene masks."
if(!check_rights_for(src, R_HOLDER)) return
if(!SSplants || !SSplants.gene_tag_masks)
to_chat(usr, "Gene masks not set.")
ADMIN_VERB(show_plant_genes, R_DEBUG, "Show Plant Genes", "Prints the round's plant gene masks.", ADMIN_CATEGORY_DEBUG_INVESTIGATE)
if(!SSplants.initialized)
to_chat(user, "Gene masks not set.")
return
for(var/mask in SSplants.gene_tag_masks)
to_chat(usr, "[mask]: [SSplants.gene_tag_masks[mask]]")
to_chat(user, "[mask]: [SSplants.gene_tag_masks[mask]]")
#undef PLANT_TICK_TIME