From 850caf744e394da7646f3c93a15693ec6fbb7020 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:18:29 -0700 Subject: [PATCH] [MIRROR] Fixes recursive_content_check (#9479) Co-authored-by: Nadyr <41974248+Darlantanis@users.noreply.github.com> --- code/_helpers/game.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/_helpers/game.dm b/code/_helpers/game.dm index d959d1927c..8068f3cec3 100644 --- a/code/_helpers/game.dm +++ b/code/_helpers/game.dm @@ -173,7 +173,7 @@ if(ismob(I)) if(!sight_check || isInSight(I, O)) - L |= recursive_content_check(I, L, recursion_limit - 1, client_check, sight_check, include_mobs, include_objects) + L |= recursive_content_check(I, L, recursion_limit - 1, client_check, sight_check, include_mobs, include_objects, ignore_show_messages) if(include_mobs) if(client_check) var/mob/M = I @@ -186,7 +186,7 @@ var/obj/check_obj = I if(ignore_show_messages || check_obj.show_messages) if(!sight_check || isInSight(I, O)) - L |= recursive_content_check(I, L, recursion_limit - 1, client_check, sight_check, include_mobs, include_objects) + L |= recursive_content_check(I, L, recursion_limit - 1, client_check, sight_check, include_mobs, include_objects, ignore_show_messages) if(include_objects) L |= I