From e61ba89237358bf215115f0522751a81022d4743 Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Thu, 4 Jun 2026 11:17:52 -0400 Subject: [PATCH] Toxin bees get toxin (#96337) ## About The Pull Request `assign_reagent()` does not take paths ## Why It's Good For The Game fixes #96333 ## Changelog :cl: fix: Toxin bees get toxin /:cl: --- code/modules/mob/living/basic/farm_animals/bee/_bee.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/basic/farm_animals/bee/_bee.dm b/code/modules/mob/living/basic/farm_animals/bee/_bee.dm index 66cd498ccd6..c3a1c5d9139 100644 --- a/code/modules/mob/living/basic/farm_animals/bee/_bee.dm +++ b/code/modules/mob/living/basic/farm_animals/bee/_bee.dm @@ -199,7 +199,7 @@ /// Picks a random toxin and assigns it to the bee /mob/living/basic/bee/proc/assign_random_toxin_reagent() - assign_reagent(get_random_reagent_id(whitelist = subtypesof(/datum/reagent/toxin))) + assign_reagent(GLOB.chemical_reagents_list[get_random_reagent_id(whitelist = subtypesof(/datum/reagent/toxin))]) /mob/living/basic/bee/mutate() . = ..()