summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-18 04:56:42 -0700
committer8cy <[email protected]>2020-04-18 04:56:42 -0700
commit5c3422ece3f30625e227fafe1f1a2df6abe4e822 (patch)
treec7df9047764a8b250ad00028f0bda48835b23078 /src
parentchange case in 8ball + add coinflip, v7.1.2 (diff)
downloaddep-core-5c3422ece3f30625e227fafe1f1a2df6abe4e822.tar.xz
dep-core-5c3422ece3f30625e227fafe1f1a2df6abe4e822.zip
update coinflip, v7.1.3
coin flip icon was pointed to a svg by accident. also changed embed title text.
Diffstat (limited to 'src')
-rw-r--r--src/bot.ts2
-rw-r--r--src/commands/fun/coinflip.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bot.ts b/src/bot.ts
index 2c67e18..1e18662 100644
--- a/src/bot.ts
+++ b/src/bot.ts
@@ -62,7 +62,7 @@ client.once('ready', () => {
console.log('\x1b[0m' + 'Servers: ' + '\x1b[36m' + `${client.guilds.cache.size}` + '\x1b[0m')
console.log()
- client.user.setActivity('uwu!help | v7.1.2', {
+ client.user.setActivity('uwu!help | v7.1.3', {
type: 'WATCHING'
});
});
diff --git a/src/commands/fun/coinflip.ts b/src/commands/fun/coinflip.ts
index e2c39bc..c37ab8c 100644
--- a/src/commands/fun/coinflip.ts
+++ b/src/commands/fun/coinflip.ts
@@ -23,7 +23,7 @@ module.exports = class CoinFlipFun extends Command {
var s = r[Math.floor(Math.random() * r.length)];
let embed = new MessageEmbed()
- .setAuthor('It\'s', 'https://upload.wikimedia.org/wikipedia/commons/3/33/Circle-icons-coin.svg')
+ .setAuthor('The coin landed on', 'https://i.imgur.com/pr7JCce.png')
.setDescription('`' + s + '`');
msg.channel.send(embed);