From ad9d7573d6852c67c702eca9b201e1c88702527c Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 31 Jul 2019 13:17:06 +0200 Subject: [PATCH] Fix crash with speech bubbles maybe. --- Content.Client/Chat/SpeechBubble.cs | 5 +++++ 1 file changed, 5 insertions(+) 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); }