Skip to content

Commit

Permalink
fix issue #48
Browse files Browse the repository at this point in the history
  • Loading branch information
MDxWARRIORxOP committed Nov 8, 2023
1 parent bdd5314 commit 567ba2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions commands/meme.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const {
const fetch = require("node-fetch");
const { getMeme } = require("memes-api");


module.exports = {
data: new SlashCommandBuilder().setName("meme").setDescription("get memes!"),
global: true,
Expand All @@ -27,8 +26,7 @@ module.exports = {
// );

const meme = await getMeme({ sfw: true });
console.log("meme", meme)

console.log("meme", meme);

const embed = new EmbedBuilder()
.setTitle(meme.title)
Expand Down
2 changes: 1 addition & 1 deletion commands/stealEmoji.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = {
.create({ attachment: url, name: parsedEmoji.name })
.then((emoji) => {
return interaction.reply({
content: `New Emoji added: \`${url}\`, :${parsedEmoji.name}`,
content: `New Emoji added: \`${url}\`, :${parsedEmoji.name}:`,
});
});
} catch (e) {
Expand Down

0 comments on commit 567ba2e

Please sign in to comment.