From 34a6e6347207c47e07f5311587d2ccbcfab327c5 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 5 Jan 2024 03:43:30 +0100 Subject: [PATCH] [MIRROR] Fixes Queen bee not working after being grown in a vat [MDB IGNORE] (#26004) * Fixes Queen bee not working after being grown in a vat (#80766) ## About The Pull Request If you grow a queen bee using cytology, it will make the bee object but NOT the mob. I just changed the typepath to the one you get out of cargo. ## Why It's Good For The Game If you want to make a bee paradise in charlie, its kind of hard to make one without a queen. ## Changelog :cl: fix: Queen bee's made with cytology now work /:cl: * Fixes Queen bee not working after being grown in a vat --------- Co-authored-by: WarlockD --- .../xenobiology/vatgrowing/samples/cell_lines/common.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/xenobiology/vatgrowing/samples/cell_lines/common.dm b/code/modules/research/xenobiology/vatgrowing/samples/cell_lines/common.dm index 3230f44dabb..08caca83854 100644 --- a/code/modules/research/xenobiology/vatgrowing/samples/cell_lines/common.dm +++ b/code/modules/research/xenobiology/vatgrowing/samples/cell_lines/common.dm @@ -652,7 +652,7 @@ /datum/reagent/drug/nicotine = -1) virus_suspectibility = 0 - resulting_atoms = list(/obj/item/queen_bee = 1) + resulting_atoms = list(/obj/item/queen_bee/bought = 1) /datum/micro_organism/cell_line/queen_bee/fuck_up_growing(obj/machinery/plumbing/growing_vat/vat) //we love job hazards vat.visible_message(span_warning("You hear angry buzzing coming from the inside of the vat!"))