Skip to content

Commit

Permalink
Fix Notification
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyou-Izumi committed Sep 3, 2023
1 parent 9786826 commit f04a282
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/DataCollector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down

0 comments on commit f04a282

Please sign in to comment.