Prevent researching Infective Exo-Locomotion

Prevents researching the Infective Exo-Locomotion nanite type, listed in the techweb as `spreading_nanites`, due to conflicts with server rules.
This commit is contained in:
Darius
2023-02-16 19:42:52 -05:00
parent 91fb579713
commit 9d7f0cf31e
2 changed files with 13 additions and 0 deletions
@@ -0,0 +1,12 @@
// Harmful nanites node
/datum/techweb_node/nanite_hazard/New()
// Define designs to remove
var/list/rem_designs = list(
"spreading_nanites"
)
// Remove designs from the list
LAZYREMOVE(design_ids, rem_designs)
// Return
. = ..()