diff --git a/src/commands/images/ad.js b/src/commands/images/ad.js index 01ea425..076bb2a 100644 --- a/src/commands/images/ad.js +++ b/src/commands/images/ad.js @@ -10,7 +10,7 @@ module.exports = async (client, interaction, args) => { const image = await pop.ad(userAvatar); let attach = new Discord.MessageAttachment(image, "ad.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } diff --git a/src/commands/images/bed.js b/src/commands/images/bed.js index 9e63352..090e93c 100644 --- a/src/commands/images/bed.js +++ b/src/commands/images/bed.js @@ -10,7 +10,7 @@ module.exports = async (client, interaction, args) => { const img = await Canvas.bed(interaction.user.avatarURL({ size: 1024, format: 'png' }), userAvatar); let attach = new Discord.MessageAttachment(img, "bed.png");; - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/burn.js b/src/commands/images/burn.js index b1b8fe0..caef9c1 100644 --- a/src/commands/images/burn.js +++ b/src/commands/images/burn.js @@ -12,7 +12,7 @@ module.exports = async (client, interaction, args) => { const img = await Canvas.burn(userAvatar, lvl); let attach = new Discord.MessageAttachment(img, "blurred.png");; - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/car.js b/src/commands/images/car.js index b0c27cb..b71305b 100644 --- a/src/commands/images/car.js +++ b/src/commands/images/car.js @@ -6,5 +6,5 @@ module.exports = async (client, interaction, args) => { const image = await pop.car(); let attach = new Discord.MessageAttachment(image.image, "car.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) }; \ No newline at end of file diff --git a/src/commands/images/clown.js b/src/commands/images/clown.js index c6a7f79..cf9eb99 100644 --- a/src/commands/images/clown.js +++ b/src/commands/images/clown.js @@ -10,7 +10,7 @@ module.exports = async (client, interaction, args) => { const image = await pop.clown(userAvatar); let attach = new Discord.MessageAttachment(image, "clown.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/colorify.js b/src/commands/images/colorify.js index e44dd4c..5aae5d5 100644 --- a/src/commands/images/colorify.js +++ b/src/commands/images/colorify.js @@ -10,7 +10,7 @@ module.exports = async (client, interaction, args) => { const image = await pop.colorify(userAvatar); let attach = new Discord.MessageAttachment(image, "colorify.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/darkness.js b/src/commands/images/darkness.js index 541e69b..baa3fd8 100644 --- a/src/commands/images/darkness.js +++ b/src/commands/images/darkness.js @@ -12,7 +12,7 @@ module.exports = async (client, interaction, args) => { const image = await Canvas.darkness(userAvatar, amount); let attach = new Discord.MessageAttachment(image, "blurred.gif"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/drake.js b/src/commands/images/drake.js index 0185b07..7ffae8c 100644 --- a/src/commands/images/drake.js +++ b/src/commands/images/drake.js @@ -9,7 +9,7 @@ module.exports = async (client, interaction, args) => { const image = await pop.drake(splitArgs1, splitArgs2); let attach = new Discord.MessageAttachment(image, "drake.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/facepalm.js b/src/commands/images/facepalm.js index d2b5dc4..9e8522f 100644 --- a/src/commands/images/facepalm.js +++ b/src/commands/images/facepalm.js @@ -10,7 +10,7 @@ module.exports = async (client, interaction, args) => { const image = await Canvas.facepalm(userAvatar); let attach = new Discord.MessageAttachment(image, "facepalm.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/glass.js b/src/commands/images/glass.js index 6159b99..2d7610a 100644 --- a/src/commands/images/glass.js +++ b/src/commands/images/glass.js @@ -5,5 +5,5 @@ module.exports = async (client, interaction, args) => { let link = `https://some-random-api.ml/canvas/glass/?avatar=${interaction.user.avatarURL({ size: 1024, format: 'png' })}` const attachment = new Discord.MessageAttachment(link, 'glass.png'); - interaction.editreply({ files: [attachment] }) + interaction.editReply({ files: [attachment] }) }; \ No newline at end of file diff --git a/src/commands/images/greyscale.js b/src/commands/images/greyscale.js index 82250e4..38080ab 100644 --- a/src/commands/images/greyscale.js +++ b/src/commands/images/greyscale.js @@ -10,7 +10,7 @@ module.exports = async (client, interaction, args) => { const image = await pop.greyscale(userAvatar); let attach = new Discord.MessageAttachment(image, "greyscale.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/invert.js b/src/commands/images/invert.js index 487be5d..a2d21c5 100644 --- a/src/commands/images/invert.js +++ b/src/commands/images/invert.js @@ -10,7 +10,7 @@ module.exports = async (client, interaction, args) => { const image = await pop.invert(userAvatar); let attach = new Discord.MessageAttachment(image, "invert.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/kiss.js b/src/commands/images/kiss.js index 60ab26a..27a4051 100644 --- a/src/commands/images/kiss.js +++ b/src/commands/images/kiss.js @@ -10,7 +10,7 @@ module.exports = async (client, interaction, args) => { const image = await new DIG.Kiss().getImage(avatar, userAvatar); let attach = new Discord.MessageAttachment(image, "kiss.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/podium.js b/src/commands/images/podium.js index 2765841..db2cac3 100644 --- a/src/commands/images/podium.js +++ b/src/commands/images/podium.js @@ -13,7 +13,7 @@ module.exports = async (client, interaction, args) => { var img = await new DIG.Podium().getImage(user1Avatar, user2Avatar, user3Avatar, user1.tag, user2.tag, user3.tag); var attach = new Discord.MessageAttachment(img, "podium.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/pooh.js b/src/commands/images/pooh.js index 824707b..c71ca12 100644 --- a/src/commands/images/pooh.js +++ b/src/commands/images/pooh.js @@ -9,7 +9,7 @@ module.exports = async (client, interaction, args) => { const image = await pop.pooh(splitArgs1, splitArgs2); let attach = new Discord.MessageAttachment(image, "pooh.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } diff --git a/src/commands/images/spank.js b/src/commands/images/spank.js index f941dcc..4ad71a8 100644 --- a/src/commands/images/spank.js +++ b/src/commands/images/spank.js @@ -9,7 +9,7 @@ module.exports = async (client, interaction, args) => { const image = await new DIG.Spank().getImage(avatar, userAvatar); let attach = new Discord.MessageAttachment(image, "spank.png"); - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/images/triggered.js b/src/commands/images/triggered.js index cfb76fe..f9a6033 100644 --- a/src/commands/images/triggered.js +++ b/src/commands/images/triggered.js @@ -5,5 +5,5 @@ module.exports = async (client, interaction, args) => { let link = `https://some-random-api.ml/canvas/triggered/?avatar=${interaction.user.avatarURL({ size: 1024, format: 'png' })}` const attachment = new Discord.MessageAttachment(link, 'triggered.gif'); - interaction.editreply({ files: [attachment] }) + interaction.editReply({ files: [attachment] }) }; \ No newline at end of file diff --git a/src/commands/images/wanted.js b/src/commands/images/wanted.js index b94b716..d5c1820 100644 --- a/src/commands/images/wanted.js +++ b/src/commands/images/wanted.js @@ -8,7 +8,7 @@ module.exports = async (client, interaction, args) => { let img = await new DIG.Wanted().getImage(userAvatar, `€`); let attach = new Discord.MessageAttachment(img, "wanted.png");; - interaction.editreply({ files: [attach] }) + interaction.editReply({ files: [attach] }) } \ No newline at end of file diff --git a/src/commands/profile/aboutme.js b/src/commands/profile/aboutme.js index 945ffeb..ce50c10 100644 --- a/src/commands/profile/aboutme.js +++ b/src/commands/profile/aboutme.js @@ -22,7 +22,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) } diff --git a/src/commands/profile/addactor.js b/src/commands/profile/addactor.js index e411517..ac8d555 100644 --- a/src/commands/profile/addactor.js +++ b/src/commands/profile/addactor.js @@ -29,7 +29,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/addartist.js b/src/commands/profile/addartist.js index 3c1a273..98737fa 100644 --- a/src/commands/profile/addartist.js +++ b/src/commands/profile/addartist.js @@ -29,7 +29,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/addfood.js b/src/commands/profile/addfood.js index 3e1c852..aa17f1f 100644 --- a/src/commands/profile/addfood.js +++ b/src/commands/profile/addfood.js @@ -29,7 +29,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/addhobby.js b/src/commands/profile/addhobby.js index 158cce5..72b1b8a 100644 --- a/src/commands/profile/addhobby.js +++ b/src/commands/profile/addhobby.js @@ -29,7 +29,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/addmovie.js b/src/commands/profile/addmovie.js index 0d6b21f..8b68395 100644 --- a/src/commands/profile/addmovie.js +++ b/src/commands/profile/addmovie.js @@ -29,7 +29,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/addpet.js b/src/commands/profile/addpet.js index d9db3bb..bcaf5d4 100644 --- a/src/commands/profile/addpet.js +++ b/src/commands/profile/addpet.js @@ -29,7 +29,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/addsong.js b/src/commands/profile/addsong.js index 8ec1240..48657ab 100644 --- a/src/commands/profile/addsong.js +++ b/src/commands/profile/addsong.js @@ -29,7 +29,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/age.js b/src/commands/profile/age.js index 63ba609..fa34671 100644 --- a/src/commands/profile/age.js +++ b/src/commands/profile/age.js @@ -22,7 +22,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) } diff --git a/src/commands/profile/bday.js b/src/commands/profile/bday.js index 60ccd63..c56aec6 100644 --- a/src/commands/profile/bday.js +++ b/src/commands/profile/bday.js @@ -37,7 +37,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) } diff --git a/src/commands/profile/color.js b/src/commands/profile/color.js index 0e344c4..11e14f8 100644 --- a/src/commands/profile/color.js +++ b/src/commands/profile/color.js @@ -23,7 +23,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) } diff --git a/src/commands/profile/delactor.js b/src/commands/profile/delactor.js index 7be11bc..1f8bba1 100644 --- a/src/commands/profile/delactor.js +++ b/src/commands/profile/delactor.js @@ -30,7 +30,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/delartist.js b/src/commands/profile/delartist.js index 59aaeb6..82f7778 100644 --- a/src/commands/profile/delartist.js +++ b/src/commands/profile/delartist.js @@ -30,7 +30,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/delfood.js b/src/commands/profile/delfood.js index 5cf7d09..2c49214 100644 --- a/src/commands/profile/delfood.js +++ b/src/commands/profile/delfood.js @@ -30,7 +30,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/delhobby.js b/src/commands/profile/delhobby.js index 52b230b..be54632 100644 --- a/src/commands/profile/delhobby.js +++ b/src/commands/profile/delhobby.js @@ -30,7 +30,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/delmovie.js b/src/commands/profile/delmovie.js index 1fd7c47..57f1a36 100644 --- a/src/commands/profile/delmovie.js +++ b/src/commands/profile/delmovie.js @@ -30,7 +30,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/delpet.js b/src/commands/profile/delpet.js index 2c5de07..0b63a68 100644 --- a/src/commands/profile/delpet.js +++ b/src/commands/profile/delpet.js @@ -30,7 +30,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/delsong.js b/src/commands/profile/delsong.js index 2a868d4..ab9d0d0 100644 --- a/src/commands/profile/delsong.js +++ b/src/commands/profile/delsong.js @@ -30,7 +30,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) diff --git a/src/commands/profile/origin.js b/src/commands/profile/origin.js index 36b76fb..8140b65 100644 --- a/src/commands/profile/origin.js +++ b/src/commands/profile/origin.js @@ -22,7 +22,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) } diff --git a/src/commands/profile/status.js b/src/commands/profile/status.js index a6afbc4..734742a 100644 --- a/src/commands/profile/status.js +++ b/src/commands/profile/status.js @@ -22,7 +22,7 @@ module.exports = async (client, interaction, args) => { }, interaction); } else { - return client.errNormal({ text: "No profile found! Open a profile with createprofile", type: 'editreply' }, interaction); + return client.errNormal({ error: "No profile found! Open a profile with createprofile", type:'editreply' }, interaction); } }) }