diff --git a/src/core/api/modules/checker.ts b/src/core/api/modules/checker.ts index 59740a0..6863ed4 100644 --- a/src/core/api/modules/checker.ts +++ b/src/core/api/modules/checker.ts @@ -1194,10 +1194,6 @@ export class ODCheckerCustomStructure_EmojiString extends ODCheckerStringStructu const lt = checker.locationTraceDeref(locationTrace) if (typeof value != "string") return false - // check if the string is a valid custom emoji - const customEmojiFormat = /^[\w-]+:\d+$/ - if (customEmojiFormat.test(value)) return true - const discordEmojiSplitter = /(?:)/g const splitted = value.split(discordEmojiSplitter) const discordEmojiAmount = splitted.length-1 @@ -1472,4 +1468,4 @@ export class ODCheckerCustomStructure_Template extends ODCheckerTemplateStructur this.idk = idk } } -*/ \ No newline at end of file +*/