From 7232f1689f69f1c9803f237fac05ad7d1ef57c6c Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 18 Apr 2021 21:26:56 -0400 Subject: [PATCH] Don't reply in user-agent --- commands/random-res/user-agent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random-res/user-agent.js b/commands/random-res/user-agent.js index 4005a344..b8d73e0e 100644 --- a/commands/random-res/user-agent.js +++ b/commands/random-res/user-agent.js @@ -12,6 +12,6 @@ module.exports = class UserAgentCommand extends Command { } run(msg) { - return msg.reply(new UserAgent().toString()); + return msg.say(new UserAgent().toString()); } };