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
🆑

fix: Toxin bees get toxin

/🆑
This commit is contained in:
Leland Kemble
2026-06-04 11:17:52 -04:00
committed by GitHub
parent ddabc357e9
commit e61ba89237
@@ -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()
. = ..()