Compare commits

..

No commits in common. "190d690d0376827747718952dece58426c773c3e" and "9debca0e05b6961c1ac3821e27a3263d310446bd" have entirely different histories.

4 changed files with 5 additions and 10 deletions

View file

@ -15,11 +15,6 @@ module.exports = class Help extends Command {
} }
async command(ctx) { async command(ctx) {
console.log(ctx.args);
let silent = [ '--nd', '--no-dev' ];
if (ctx.args.includes(silent)) {
console.log('is silent');
}
if (!ctx.args.length) { if (!ctx.args.length) {
const commands = [ const commands = [
[ [

View file

@ -55,7 +55,7 @@ module.exports = class ServerInfo extends Command {
true true
) )
.addField('Region', ctx.utils.emotes.regions[ctx.guild.region] || ctx.guild.region, true) .addField('Region', ctx.utils.emotes.regions[ctx.guild.region] || ctx.guild.region, true)
.addField('Features', features.join(' **|** ') || 'None'); .addField('Features', features.join(' **|** '));
if (ctx.guild.vanityURLCode) { if (ctx.guild.vanityURLCode) {
Embed.addField( Embed.addField(
'Vanity URL', 'Vanity URL',

View file

@ -42,7 +42,7 @@ module.exports = class Userinfo extends Command {
Roles.push(`<@&${role[0]}>`); Roles.push(`<@&${role[0]}>`);
} }
Embed.setTitle(`Info on ${User.nickname || User.user.username}`) Embed.setTitle(`Info on ${User.nickname}`)
.setColor(ctx.config.color) .setColor(ctx.config.color)
.addField('Username', User.user.tag, true) .addField('Username', User.user.tag, true)
.addField('ID', User.user.id, true) .addField('ID', User.user.id, true)

View file

@ -43,13 +43,13 @@ module.exports = class nHold extends Command {
let req; let req;
let Message; let Message;
await yiff.sheri.nsfw.hold().then((E) => (req = E)); await yiff.furrybot.nsfw.hold().then((E) => (req = E));
if (Settings.embeds) { if (Settings.embeds) {
Message = new MessageEmbed() Message = new MessageEmbed()
.setColor(ctx.config.color) .setColor(ctx.config.color)
.setImage(req.url) .setImage(req)
.setFooter(`${ctx.client.user.username} - Provided by sheri.bot`, ctx.client.user.avatarURL()); .setFooter(`${ctx.client.user.username} - Provided by furry.bot`, ctx.client.user.avatarURL());
if (Line) { if (Line) {
Message.setDescription(Line); Message.setDescription(Line);
} }