fix footer

This commit is contained in:
rhearmas 2019-12-21 16:50:41 -05:00
parent e925763a15
commit bc22b79f1d
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ module.exports = (client) => {
.setURL(url)
.setImage(options.image)
.setTimestamp(options.timestamp ? timestampToDate(options.timestamp) : null)
.setFooter(options.footer === true ? randomFooter() : (options.footer ? options.footer : ''), options.footer ? global.bot.user.avatarURL : undefined)
.setFooter(options.footer === true ? randomFooter() : (options.footer ? options.footer : ''), options.footer ? client.user.avatarURL : undefined)
.setAuthor(options.author === undefined ? '' : options.author)
.setThumbnail(options.thumbnail);
};