From 725c73d8277c57da927a06dee25485f7e76ff12d Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 7 Sep 2018 11:03:38 +0000 Subject: [PATCH] Send emoji image as a file --- commands/info/emoji-image.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/info/emoji-image.js b/commands/info/emoji-image.js index 65aedc6f..382792c5 100644 --- a/commands/info/emoji-image.js +++ b/commands/info/emoji-image.js @@ -21,6 +21,6 @@ module.exports = class EmojiImageCommand extends Command { } run(msg, { emoji }) { - return msg.say(emoji.url); + return msg.say({ files: [emoji.url] }); } }; diff --git a/package.json b/package.json index f6f353fa..ff5a770a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "90.3.3", + "version": "90.3.4", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {