diff --git a/XivCommon/Functions/ChatBubbles.cs b/XivCommon/Functions/ChatBubbles.cs index 78c7956..5492142 100755 --- a/XivCommon/Functions/ChatBubbles.cs +++ b/XivCommon/Functions/ChatBubbles.cs @@ -95,8 +95,7 @@ namespace XivCommon.Functions { var actorStruct = Marshal.PtrToStructure(actorPtr); var actor = new Actor(actorPtr, actorStruct, this.Dalamud); - var rawText = Util.ReadTerminated(textPtr); - var text = this.SeStringManager.Parse(rawText); + var text = Util.ReadSeString(textPtr, this.SeStringManager); try { this.OnChatBubble?.Invoke(ref actor, ref text);