From dca96b1c35c1e0b3648b7708861db857719b53c5 Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Thu, 3 Feb 2022 19:51:41 -0500 Subject: [PATCH] fix: ignore more input types --- ChatTwo/GameFunctions/Chat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChatTwo/GameFunctions/Chat.cs b/ChatTwo/GameFunctions/Chat.cs index a1b5936..2e40684 100755 --- a/ChatTwo/GameFunctions/Chat.cs +++ b/ChatTwo/GameFunctions/Chat.cs @@ -322,7 +322,7 @@ internal sealed unsafe class Chat : IDisposable { var node = (AtkResNode*) focus; var parent = node->ParentNode; - if (parent == null || (uint) parent->Type is not (1007 or 1011)) { + if (parent == null || (uint) parent->Type is not (1002 or 1003 or 1005 or 1007 or 1010 or 1011)) { Decrement(); return; }