diff --git a/src/anticheat_listener/anticheat_logs.ts b/src/anticheat_listener/anticheat_logs.ts index f2ad2de..c45aa77 100644 --- a/src/anticheat_listener/anticheat_logs.ts +++ b/src/anticheat_listener/anticheat_logs.ts @@ -10,7 +10,6 @@ export function setupAntiCheatListener(bot: Client, channelId: TextBasedChannel) const isAntiCheatMessage = message.includes("§r§4[§6Paradox§4]§r") || - message.includes("§¶§cUAC STAFF §b► §d") || message.includes("§r§6[§aScythe§6]§r") || message.includes("§l§6[§4Paradox§6]§r") || message.includes("§l§6[§4Paradox AntiCheat Command Help§6]") || @@ -35,14 +34,6 @@ export function setupAntiCheatListener(bot: Client, channelId: TextBasedChannel) ) { antiCheatMsg = rawText; correctedText = autoCorrect(antiCheatMsg, correction); - } else if (rawText.startsWith("§¶§cUAC STAFF §b► §d")) { - antiCheatMsg = - rawText + - obj.rawtext - .slice(1, 3) - .map((t: { text: string }) => t.text) - .join(""); - correctedText = autoCorrect(antiCheatMsg, correction); } else if (rawText.startsWith("§r§6[§aScythe§6]§r")) { antiCheatMsg = rawText; correctedText = autoCorrect(antiCheatMsg, correction);