diff --git a/commands/fun/gorb.js b/commands/fun/gorb.js index 4ba3f33..a3aa0bc 100644 --- a/commands/fun/gorb.js +++ b/commands/fun/gorb.js @@ -10,6 +10,12 @@ module.exports = { * @param {String[]} args */ run: async (client, message, args) => { - message.channel.send({ files: ['./images/gorb.jpg'] }) + + if(!args[0]){ + message.channel.send({ files: ['./images/gorb.jpg'] }) + } + if(args[0] === 'cs'){ + message.channel.send({ files: ['./images/gorbcs.jpg'] }) + } }, }; \ No newline at end of file diff --git a/images/gorbcs.jpg b/images/gorbcs.jpg new file mode 100644 index 0000000..3c00e2c Binary files /dev/null and b/images/gorbcs.jpg differ