From fe266c28dd62bbe8d71e0dcc64d5db8b8eb9e777 Mon Sep 17 00:00:00 2001 From: ArcaneMusic <41715314+ArcaneMusic@users.noreply.github.com> Date: Fri, 23 Jan 2026 18:01:41 -0500 Subject: [PATCH] Minor spelling mistake in Slime Management Console (#94978) ## About The Pull Request The Slime Management Console will include a random stored_monkeys in a to_chat if there aren't enough. This removes it so that it reads better. ## Why It's Good For The Game Reads like proper english in a player facing console. ## Changelog :cl: spellcheck: The slime management console no longer reads a variable name out incorrectly. /:cl: --- code/modules/research/xenobiology/xenobio_camera.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/xenobiology/xenobio_camera.dm b/code/modules/research/xenobiology/xenobio_camera.dm index 5e38d9a18a0..65fcb3ffc38 100644 --- a/code/modules/research/xenobiology/xenobio_camera.dm +++ b/code/modules/research/xenobiology/xenobio_camera.dm @@ -254,7 +254,7 @@ ///Places one monkey, if possible /obj/machinery/computer/camera_advanced/xenobio/proc/feed_slime(mob/living/user, turf/open/target_turf) if(stored_monkeys < 1) - to_chat(user, span_warning("[src] needs to have at least 1 monkey stored. Currently has [stored_monkeys] stored_monkeys stored.")) + to_chat(user, span_warning("[src] needs to have at least 1 monkey stored. Currently has [stored_monkeys] monkeys stored.")) target_turf.balloon_alert(user, "not enough monkeys") return