From b9618d9cc33aba1f34b3febf64ceb597a58fc671 Mon Sep 17 00:00:00 2001 From: Y0SH1M4S73R Date: Fri, 8 May 2026 01:13:05 -0400 Subject: [PATCH] [I ded] Xenomicrobes and Nanomachines are maintenance pill only (#96012) ## About The Pull Request See title. ## Why It's Good For The Game These reagents are far too disruptive to the round to allow to be produced in the vast quantities and with the distribution vectors that botany offers. The amounts of them that can be procured through natural maintenance pill spawns and the silver-extract-exclusive food items containing them is still acceptable. ## Changelog :cl: balance: You can no longer get Xenomicrobes and Nanomachines from botany mutations. /:cl: --- code/modules/reagents/chemistry/reagents/other_reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index e632e129b10..ab743cf70be 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -1527,7 +1527,7 @@ color = "#535E66" // rgb: 83, 94, 102 taste_description = "sludge" penetrates_skin = NONE - randomized_spawns = REAGENT_SPAWN_ALL_RANDOM_SPAWNS + randomized_spawns = REAGENT_SPAWN_MAINTENANCE_PILL /datum/reagent/cyborg_mutation_nanomachines/expose_mob(mob/living/exposed_mob, methods=TOUCH, reac_volume, show_message = TRUE, touch_protection = 0) . = ..() @@ -1543,7 +1543,7 @@ color = "#535E66" // rgb: 83, 94, 102 taste_description = "sludge" penetrates_skin = NONE - randomized_spawns = REAGENT_SPAWN_ALL_RANDOM_SPAWNS + randomized_spawns = REAGENT_SPAWN_MAINTENANCE_PILL /datum/reagent/xenomicrobes/expose_mob(mob/living/exposed_mob, methods=TOUCH, reac_volume, show_message = TRUE, touch_protection = 0) . = ..()