From 582aaee6d99a70b77f7ea43aa46f79378019f08d Mon Sep 17 00:00:00 2001 From: Casey Date: Mon, 27 Feb 2023 13:57:42 -0500 Subject: [PATCH] Merge pull request #14577 from PastelPrinceDan/extract-fix fixes a small typo on the slime fertility agent --- code/modules/xenobio/items/slimepotions_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/xenobio/items/slimepotions_vr.dm b/code/modules/xenobio/items/slimepotions_vr.dm index 540a610056..0bd4db66f7 100644 --- a/code/modules/xenobio/items/slimepotions_vr.dm +++ b/code/modules/xenobio/items/slimepotions_vr.dm @@ -47,7 +47,7 @@ to_chat(user, "The slime cannot get any more fertile!") return ..() - to_chat(user, "You feed the slime the infertility agent. It will now have less offspring.") + to_chat(user, "You feed the slime the fertility agent. It will now have more offspring.") M.split_amount = between(2, M.split_amount + 2, 6) playsound(src, 'sound/effects/bubbles.ogg', 50, 1) qdel(src) @@ -192,4 +192,4 @@ if(istype(AI) && justified) AI.obedience = 10 playsound(src, 'sound/effects/bubbles.ogg', 50, 1) - qdel(src) \ No newline at end of file + qdel(src)