From 49a677d567c4bdca24d0cf8dee879572f0215aa2 Mon Sep 17 00:00:00 2001 From: chuga-git <98280110+chuga-git@users.noreply.github.com> Date: Fri, 30 May 2025 16:18:00 -0500 Subject: [PATCH] Fixes slime management console runtime (#29460) * fixes slime management console help action runtime * Update code/modules/research/xenobiology/xenobio_camera.dm Signed-off-by: Luc <89928798+lewcc@users.noreply.github.com> --------- Signed-off-by: Luc <89928798+lewcc@users.noreply.github.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> --- code/modules/research/xenobiology/xenobio_camera.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/research/xenobiology/xenobio_camera.dm b/code/modules/research/xenobiology/xenobio_camera.dm index 50cd0f9daf1..ba59fee6945 100644 --- a/code/modules/research/xenobiology/xenobio_camera.dm +++ b/code/modules/research/xenobiology/xenobio_camera.dm @@ -345,13 +345,13 @@ /datum/action/innate/hotkey_help/Activate() if(!target || !isliving(owner)) return - var/obj/machinery/computer/camera_advanced/xenobio/X = owner.machine + var/obj/machinery/computer/camera_advanced/xenobio/console = target to_chat(owner, "Click shortcuts:") to_chat(owner, "Shift-click a slime to pick it up, or the floor to drop all held slimes.") to_chat(owner, "Ctrl-click a slime to scan it.") to_chat(owner, "Alt-click a slime to feed it a potion.") to_chat(owner, "Ctrl-click or a dead monkey to recycle it, or the floor to place a new monkey.") - to_chat(owner, "[X] now has [X.monkeys] monkeys left.") + to_chat(owner, "[console] now has [console.monkeys] monkey\s left.") // // Alternate clicks for slime, monkey and open turf if using a xenobio console