Skip to content

Commit

Permalink
Remerge correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Cartrigger committed Oct 31, 2024
1 parent 3d013a3 commit c66206d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions events/NSFW_Invites/nsfw_InviteCreate.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// Declares constants (destructured) to be used in this file.

const { Events, EmbedBuilder } = require("discord.js");
const { owner } = require("../../config.json");
const fetch = require("node-fetch");
Expand Down
5 changes: 3 additions & 2 deletions interactions/slash/lookup.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ module.exports = {
data: new SlashCommandBuilder()
.setName('lookup')
.setDescription('Lookup a Minecraft username')
.addStringOption(option => option.setName('username')
.addStringOption(option =>
option.setName('username')
.setDescription('The Minecraft username to lookup')
.setRequired(true)
),
Expand All @@ -26,7 +27,7 @@ module.exports = {

const avatarUrl = `https://minotar.net/helm/${username}/100.png`;
const bodyUrl = `https://minotar.net/armor/body/${username}/100.png`;

const embed = new EmbedBuilder()
.setTitle(`Minecraft User: ${player.username}`)
.setColor('Green')
Expand Down

0 comments on commit c66206d

Please sign in to comment.