From 8fa5ee817e44f3f4942280ae8875923c19221ab0 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 19 Mar 2020 12:50:11 -0400 Subject: [PATCH] Fix --- commands/other/phone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/other/phone.js b/commands/other/phone.js index 38932ae1..00649b27 100644 --- a/commands/other/phone.js +++ b/commands/other/phone.js @@ -18,7 +18,7 @@ module.exports = class PhoneCommand extends Command { default: '', validate: channelID => { if (channelID.toLowerCase() === 'count') return true; - return !/^[0-9]+$/.test(channelID); + return /^[0-9]+$/.test(channelID); } } ],