From dabe16338597a1ffd44f9e9ee867718edaaae48d Mon Sep 17 00:00:00 2001 From: Sir Warock <67167466+SirWarock@users.noreply.github.com> Date: Thu, 16 Apr 2026 02:22:17 +0200 Subject: [PATCH] Hotfix for Telepathy (#5674) Fix it --- Content.Server/Nyanotrasen/Chat/NyanoChatSystem.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Server/Nyanotrasen/Chat/NyanoChatSystem.cs b/Content.Server/Nyanotrasen/Chat/NyanoChatSystem.cs index eff80cda57..39ed795fea 100644 --- a/Content.Server/Nyanotrasen/Chat/NyanoChatSystem.cs +++ b/Content.Server/Nyanotrasen/Chat/NyanoChatSystem.cs @@ -16,6 +16,7 @@ using System.Linq; using System.Text; using Content.Server._DV.Psionics.Systems; using Content.Shared._DV.Chat.Components; +using Content.Shared._DV.Psionics.Components; namespace Content.Server.Nyanotrasen.Chat; @@ -65,6 +66,7 @@ public sealed class NyanoChatSystem : EntitySystem private bool IsEligibleForTelepathy(EntityUid entity) { return _psionicSystem.CanUsePsionicAbility(entity) + && HasComp(entity) && (!TryComp(entity, out var mobstate) || mobstate.CurrentState == MobState.Alive); }