mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-24 13:16:47 +01:00
Prevents researching the Infective Exo-Locomotion nanite type, listed in the techweb as `spreading_nanites`, due to conflicts with server rules.
13 lines
241 B
Plaintext
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
|
|
. = ..()
|