diff --git a/src/common/full-matcher.ts b/src/common/full-matcher.ts index ab03966..8734eea 100644 --- a/src/common/full-matcher.ts +++ b/src/common/full-matcher.ts @@ -23,11 +23,11 @@ export function fullIDMatcher(compare: string, id: string): boolean { // Match server cases, things like Discord need this if (spl.length > 3 && spl[2].indexOf('s:') === 0 && splitter.length > 3) { - if (spl[2] !== splitter[3] && spl[2] !== '*') { + if (spl[2] !== splitter[2] && spl[2] !== '*') { return false; } - if (spl[3] !== splitter[2] && spl[3] !== '*') { + if (spl[3] !== splitter[3] && spl[3] !== '*') { return false; }