From 8aceed5a2df757d6ec47bf7ec4f12cac64574f34 Mon Sep 17 00:00:00 2001 From: carlarctg <53100513+carlarctg@users.noreply.github.com> Date: Fri, 20 Sep 2024 19:05:06 -0300 Subject: [PATCH] Legions borne from mimes can no longer talk (#86778) ## About The Pull Request Legions borne from mimes can no longer talk ## Why It's Good For The Game Immersion breaking oversight. Just as dwarves make tiny legions mimes make mute legions ## Changelog :cl: fix: Legions borne from mimes can no longer talk /:cl: --- code/modules/mob/living/basic/lavaland/legion/legion_ai.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/basic/lavaland/legion/legion_ai.dm b/code/modules/mob/living/basic/lavaland/legion/legion_ai.dm index 1bae1b30353..856ff315d0c 100644 --- a/code/modules/mob/living/basic/lavaland/legion/legion_ai.dm +++ b/code/modules/mob/living/basic/lavaland/legion/legion_ai.dm @@ -66,6 +66,9 @@ if (QDELETED(victim) || prob(30)) return ..() + if(HAS_MIND_TRAIT(victim, TRAIT_MIMING)) // mimes cant talk + return + var/list/remembered_speech = controller.blackboard[BB_LEGION_RECENT_LINES] || list() if (length(remembered_speech) && prob(50)) // Don't spam the radio