Speech bubbles!

This commit is contained in:
zumorica
2020-04-09 03:31:40 +02:00
parent 5027367988
commit 3ba2e5de80
3 changed files with 7 additions and 2 deletions

View File

@@ -288,7 +288,7 @@ namespace Content.Client.Chat
WriteChatMessage(storedMessage);
// Local messages that have an entity attached get a speech bubble.
if (msg.Channel == ChatChannel.Local && msg.SenderEntity != default)
if ((msg.Channel == ChatChannel.Local || msg.Channel == ChatChannel.Dead) && msg.SenderEntity != default)
{
AddSpeechBubble(msg);
}