summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-16 05:05:29 -0700
committer8cy <[email protected]>2020-04-16 05:05:29 -0700
commit1bdc50f73b4b3479734189d6097dba7a5a309280 (patch)
tree5abefb576de1b6c1d35809b50c1192322cf9ac7b /src
parentThe Purification, v7.0.0 (diff)
downloaddep-core-1bdc50f73b4b3479734189d6097dba7a5a309280.tar.xz
dep-core-1bdc50f73b4b3479734189d6097dba7a5a309280.zip
add missing +, v7.0.1
Diffstat (limited to 'src')
-rw-r--r--src/bot.ts2
-rw-r--r--src/commands/fun/dogeify.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bot.ts b/src/bot.ts
index 2f3d8a3..5946543 100644
--- a/src/bot.ts
+++ b/src/bot.ts
@@ -59,7 +59,7 @@ client.once('ready', () => {
console.log('Servers:', `${client.guilds.cache.size}`)
console.log()
- client.user.setActivity('uwu!help | v7.0.0', {
+ client.user.setActivity('uwu!help | v7.0.1', {
type: 'WATCHING'
});
});
diff --git a/src/commands/fun/dogeify.ts b/src/commands/fun/dogeify.ts
index 3ec79bc..1c8757b 100644
--- a/src/commands/fun/dogeify.ts
+++ b/src/commands/fun/dogeify.ts
@@ -28,7 +28,7 @@ module.exports = class DogeifyFun extends Command {
async run(msg: CommandoMessage, { userMsg }) {
var m = userMsg;
var u1 = await doge(m);
- msg.reply(u1 + ' ' emoji.random());
+ msg.reply(u1 + ' ' + emoji.random());
msg.delete();
}
}; \ No newline at end of file