From 614bf6a3b44ca019f708249499766d54cf7f72b5 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Wed, 25 Mar 2026 15:13:04 -0700 Subject: [PATCH] [MIRROR] AI core counts for lonely major (#12590) Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> --- code/datums/components/traits/crowd_detection.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/traits/crowd_detection.dm b/code/datums/components/traits/crowd_detection.dm index 4d11158b01..df2e91ff07 100644 --- a/code/datums/components/traits/crowd_detection.dm +++ b/code/datums/components/traits/crowd_detection.dm @@ -96,7 +96,7 @@ var/list/in_range = list() if(!istype(M)) return in_range - var/social_check = only_people && !iscarbon(M) && !isrobot(M) && !ispAI(M) + var/social_check = only_people && !iscarbon(M) && !isrobot(M) && !ispAI(M) && !isAI(M) var/self_invisible_check = M == human_parent || M.invisibility > human_parent.see_invisible var/ckey_check = only_people && !M.ckey var/overall_checks = M == human_parent || M.stat == DEAD || social_check || ckey_check || (ispAI(M) && !M.ckey)