Clean-up non-character state checks

This commit is contained in:
Cohee
2024-04-11 23:50:01 +03:00
parent 123131074c
commit 356f1f9c39
2 changed files with 14 additions and 13 deletions

View File

@ -594,7 +594,7 @@ async function moduleWorker() {
}
// non-characters not supported
if (!context.groupId && (context.characterId === undefined || context.characterId === 'invalid-safety-id')) {
if (!context.groupId && context.characterId === undefined) {
removeExpression();
return;
}