From bdd791f307599beb72a77bc793224a884cfe01eb Mon Sep 17 00:00:00 2001 From: XDTM Date: Sun, 4 Feb 2018 01:13:11 +0100 Subject: [PATCH 1/2] Eggs from the abductor egg gland now have a random reagent instead of acid --- code/modules/antagonists/abductor/equipment/gland.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/abductor/equipment/gland.dm b/code/modules/antagonists/abductor/equipment/gland.dm index 6eba723756..9b767a0130 100644 --- a/code/modules/antagonists/abductor/equipment/gland.dm +++ b/code/modules/antagonists/abductor/equipment/gland.dm @@ -264,8 +264,8 @@ /obj/item/organ/heart/gland/egg/activate() to_chat(owner, "You lay an egg!") var/obj/item/reagent_containers/food/snacks/egg/egg = new(owner.drop_location()) - egg.reagents.add_reagent("sacid",20) - egg.desc += " It smells bad." + egg.reagents.add_reagent(get_random_reagent_id(), 15) + egg.desc += " It looks weird..." /obj/item/organ/heart/gland/electric cooldown_low = 800