This commit is contained in:
loicbersier 2019-07-23 16:47:27 +02:00
parent b891b96410
commit 0d947f80de
2 changed files with 2 additions and 2 deletions

View file

@ -69,7 +69,7 @@ class borgarCommand extends Command {
} }
}) })
.catch(() => { .catch(() => {
return message.reply('time runned out noob...'); return message.reply('You run out of time noob...');
}); });
}, 3000); }, 3000);
}); });

View file

@ -23,7 +23,7 @@ class reloadCommand extends Command {
async exec(message, args) { async exec(message, args) {
this.handler.reload(args.command); this.handler.reload(args.command);
return message.channel.send(`Sucessfully reloaded command ${args.command}`); return message.channel.send(`successfully reloaded command ${args.command}`);
} }
} }