diff --git a/assets/images/dark-theme-light-theme.png b/assets/images/dark-theme-light-theme.png new file mode 100644 index 00000000..3848b265 Binary files /dev/null and b/assets/images/dark-theme-light-theme.png differ diff --git a/assets/images/eat-pant.png b/assets/images/eat-pant.png new file mode 100644 index 00000000..847461f8 Binary files /dev/null and b/assets/images/eat-pant.png differ diff --git a/assets/images/isnt-joke.png b/assets/images/isnt-joke.png new file mode 100644 index 00000000..0833806a Binary files /dev/null and b/assets/images/isnt-joke.png differ diff --git a/assets/images/its-joke.png b/assets/images/its-joke.png new file mode 100644 index 00000000..b0badee5 Binary files /dev/null and b/assets/images/its-joke.png differ diff --git a/assets/images/spam.png b/assets/images/spam.png new file mode 100644 index 00000000..6f515fd6 Binary files /dev/null and b/assets/images/spam.png differ diff --git a/assets/images/wynaut.png b/assets/images/wynaut.png new file mode 100644 index 00000000..0e01f76b Binary files /dev/null and b/assets/images/wynaut.png differ diff --git a/commands/single/dark-theme-light-theme.js b/commands/single/dark-theme-light-theme.js index 82638d0d..267c309d 100644 --- a/commands/single/dark-theme-light-theme.js +++ b/commands/single/dark-theme-light-theme.js @@ -1,4 +1,5 @@ const Command = require('../../structures/Command'); +const path = require('path'); module.exports = class DarkThemeLightThemeCommand extends Command { constructor(client) { @@ -13,6 +14,6 @@ module.exports = class DarkThemeLightThemeCommand extends Command { } run(msg) { - return msg.say({ files: ['https://i.imgur.com/k0G7sZL.png'] }); + return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'dark-theme-light-theme.png')] }); } }; diff --git a/commands/single/eat-pant.js b/commands/single/eat-pant.js index f072da30..08edbe74 100644 --- a/commands/single/eat-pant.js +++ b/commands/single/eat-pant.js @@ -1,4 +1,5 @@ const Command = require('../../structures/Command'); +const path = require('path'); module.exports = class EatPantCommand extends Command { constructor(client) { @@ -12,6 +13,6 @@ module.exports = class EatPantCommand extends Command { } run(msg) { - return msg.say({ files: ['https://i.imgur.com/uEk0kI4.jpg'] }); + return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'eat-pant.png')] }); } }; diff --git a/commands/single/isnt-joke.js b/commands/single/isnt-joke.js index 00446b4e..1e211f44 100644 --- a/commands/single/isnt-joke.js +++ b/commands/single/isnt-joke.js @@ -1,4 +1,5 @@ const Command = require('../../structures/Command'); +const path = require('path'); module.exports = class IsntJokeCommand extends Command { constructor(client) { @@ -13,6 +14,6 @@ module.exports = class IsntJokeCommand extends Command { } run(msg) { - return msg.say({ files: ['https://i.imgur.com/QdDAeZF.jpg'] }); + return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'isnt-joke.png')] }); } }; diff --git a/commands/single/its-joke.js b/commands/single/its-joke.js index e04169ef..ecd106a8 100644 --- a/commands/single/its-joke.js +++ b/commands/single/its-joke.js @@ -1,4 +1,5 @@ const Command = require('../../structures/Command'); +const path = require('path'); module.exports = class ItsJokeCommand extends Command { constructor(client) { @@ -13,6 +14,6 @@ module.exports = class ItsJokeCommand extends Command { } run(msg) { - return msg.say({ files: ['https://i.imgur.com/NwKdpKK.jpg'] }); + return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'its-joke.png')] }); } }; diff --git a/commands/single/spam.js b/commands/single/spam.js index 442a71a3..7255204b 100644 --- a/commands/single/spam.js +++ b/commands/single/spam.js @@ -1,4 +1,5 @@ const Command = require('../../structures/Command'); +const path = require('path'); module.exports = class SpamCommand extends Command { constructor(client) { @@ -12,6 +13,6 @@ module.exports = class SpamCommand extends Command { } run(msg) { - return msg.say({ files: ['https://i.imgur.com/Az9IrXY.jpg'] }); + return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'spam.png')] }); } }; diff --git a/commands/single/wynaut.js b/commands/single/wynaut.js index 0d4c2599..f29cbc40 100644 --- a/commands/single/wynaut.js +++ b/commands/single/wynaut.js @@ -1,4 +1,5 @@ const Command = require('../../structures/Command'); +const path = require('path'); module.exports = class WynautCommand extends Command { constructor(client) { @@ -13,6 +14,6 @@ module.exports = class WynautCommand extends Command { } run(msg) { - return msg.say({ files: ['https://i.imgur.com/6ew9ysx.png'] }); + return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'wynaut.png')] }); } }; diff --git a/package.json b/package.json index 7389bf03..8d1f33a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "90.7.1", + "version": "90.7.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {