diff --git a/package.json b/package.json index 2964c4d..3573c9a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "discord-owo-selfbot", - "version": "2.2.0", + "version": "2.2.1", "description": "Ain't the best OwO Tool Farm, but worth a try (why not?)", "type": "module", "engines": { diff --git a/src/DataCollector.ts b/src/DataCollector.ts index 51ad00f..b85ff70 100644 --- a/src/DataCollector.ts +++ b/src/DataCollector.ts @@ -118,7 +118,7 @@ const userNotify = (cache?:string) => { type: "input", message: "Enter user ID you want to be notified via Webhook/Call/Direct Message", validate: async (answer:string) => { - if((waynotify.includes(1) || waynotify.includes(2)) && /^\d{17,19}$/.test(answer)) { + if((waynotify.includes(2) || waynotify.includes(3)) && /^\d{17,19}$/.test(answer)) { if(answer == client.user?.id) return "Selfbot ID is not valid for Call/DMs option" const target = client.users.cache.get(answer) if(!target) return "User not found!"