fix: ignore more input types

This commit is contained in:
Anna 2022-02-03 19:51:41 -05:00
parent d0c3cbc2ab
commit 51ec427661
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}