Files
Darius 9d7f0cf31e 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.
2023-02-16 19:42:52 -05:00

13 lines
241 B
Plaintext

// 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
. = ..()