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()); } };