diff --git a/Content.Client/Chat/SpeechBubble.cs b/Content.Client/Chat/SpeechBubble.cs index 33eca6c622..0815e283b7 100644 --- a/Content.Client/Chat/SpeechBubble.cs +++ b/Content.Client/Chat/SpeechBubble.cs @@ -115,6 +115,11 @@ namespace Content.Client.Chat private void Die() { + if (Disposed) + { + return; + } + _chatManager.RemoveSpeechBubble(_senderEntity.Uid, this); }