diff --git a/src/commands/mod/nick.ts b/src/commands/mod/nick.ts index e8463f4..6a0410a 100644 --- a/src/commands/mod/nick.ts +++ b/src/commands/mod/nick.ts @@ -47,7 +47,7 @@ const callback = async (interaction: CommandInteraction) => { .setTitle("Nickname changed") .setDescription(`Your nickname was ${interaction.options.getString("name") ? "changed" : "cleared"} in ${interaction.guild.name}.` + (interaction.options.getString("name") ? ` it is now: ${interaction.options.getString("name")}` : "") + "\n\n" + - (confirmation.buttonClicked ? `You can appeal this in this ticket: <#${confirmation.response}>` : ``)) + (confirmation.buttonClicked ? `You can appeal this here: <#${confirmation.response}>` : ``)) .setStatus("Danger") ] }) diff --git a/src/commands/mod/warn.ts b/src/commands/mod/warn.ts index ce54cfb..715777e 100644 --- a/src/commands/mod/warn.ts +++ b/src/commands/mod/warn.ts @@ -47,7 +47,7 @@ const callback = async (interaction: CommandInteraction) => { .setTitle("Warned") .setDescription(`You have been warned in ${interaction.guild.name}` + (interaction.options.getString("reason") ? ` for:\n> ${interaction.options.getString("reason")}` : ".") + "\n\n" + - (confirmation.buttonClicked ? `You can appeal this in this ticket: <#${confirmation.response}>` : ``)) + (confirmation.buttonClicked ? `You can appeal this here ticket: <#${confirmation.response}>` : ``)) .setStatus("Danger") ] })