hide specific options to command author
This commit is contained in:
4 files changed
+12
-12
No files matched your search
+1
-1
@@ -4,7 +4,7 @@ module.exports = {
|
||||
name: "bank",
|
||||
debug: false,
|
||||
description: "Manage your banking",
|
||||
usage: "[cmd] [opt]",
|
||||
usage: "[cmd] [opt], ephemeral: true",
|
||||
permissions: {
|
||||
channel: ["VIEW_CHANNEL", "SEND_MESSAGES", "EMBED_LINKS"],
|
||||
member: [],
|
||||
|
||||
@@ -467,7 +467,7 @@ module.exports = {
|
||||
.setStyle("SUCCESS")
|
||||
)
|
||||
|
||||
interaction.send({ embeds: [prompt], components: [opt] });
|
||||
interaction.send({ embeds: [prompt], components: [opt], ephemeral: true });
|
||||
|
||||
client.on("interactionCreate", ButtonInteraction => {
|
||||
if(!ButtonInteraction.isButton()) return;
|
||||
|
||||
+2
-2
@@ -117,7 +117,7 @@ module.exports = {
|
||||
itemEmbed.addFields({ name: item.name, value: item.description, inline: false });
|
||||
}
|
||||
|
||||
return interaction.send({ embeds: [itemEmbed] });
|
||||
return interaction.send({ embeds: [itemEmbed], ephemeral: true });
|
||||
}
|
||||
|
||||
let inventoryEmbed = new MessageEmbed()
|
||||
@@ -131,7 +131,7 @@ module.exports = {
|
||||
description += "```";
|
||||
inventoryEmbed.setDescription(description);
|
||||
|
||||
return interaction.send({ embeds: [inventoryEmbed] });
|
||||
return interaction.send({ embeds: [inventoryEmbed], ephemeral: true });
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -4,7 +4,7 @@ module.exports = {
|
||||
name: "settings",
|
||||
debug: false,
|
||||
description: "Configure your server settings",
|
||||
usage: "[opt] [action] [value]",
|
||||
usage: "[opt], ephemeral: true [action] [value]",
|
||||
permissions: {
|
||||
channel: ["VIEW_CHANNEL", "SEND_MESSAGES", "EMBED_LINKS"],
|
||||
member: ["MANAGE_GUILD"],
|
||||
@@ -349,7 +349,7 @@ module.exports = {
|
||||
.setStyle("SUCCESS")
|
||||
)
|
||||
|
||||
interaction.send({ embeds: [prompt], components: [opt] });
|
||||
interaction.send({ embeds: [prompt], components: [opt], ephemeral: true });
|
||||
|
||||
client.on("interactionCreate", ButtonInteraction => {
|
||||
if(!ButtonInteraction.isButton()) return;
|
||||
@@ -428,7 +428,7 @@ module.exports = {
|
||||
.setStyle("SUCCESS")
|
||||
)
|
||||
|
||||
interaction.send({ embeds: [prompt], components: [opt] });
|
||||
interaction.send({ embeds: [prompt], components: [opt], ephemeral: true });
|
||||
|
||||
client.on("interactionCreate", ButtonInteraction => {
|
||||
if(!ButtonInteraction.isButton()) return;
|
||||
@@ -507,7 +507,7 @@ module.exports = {
|
||||
.setStyle("SUCCESS")
|
||||
)
|
||||
|
||||
interaction.send({ embeds: [prompt], components: [opt] });
|
||||
interaction.send({ embeds: [prompt], components: [opt], ephemeral: true });
|
||||
|
||||
client.on("interactionCreate", ButtonInteraction => {
|
||||
if(!ButtonInteraction.isButton()) return;
|
||||
@@ -586,7 +586,7 @@ module.exports = {
|
||||
.setStyle("SUCCESS")
|
||||
)
|
||||
|
||||
interaction.send({ embeds: [prompt], components: [opt] });
|
||||
interaction.send({ embeds: [prompt], components: [opt], ephemeral: true });
|
||||
|
||||
client.on("interactionCreate", ButtonInteraction => {
|
||||
if(!ButtonInteraction.isButton()) return;
|
||||
@@ -714,7 +714,7 @@ module.exports = {
|
||||
.setStyle("SUCCESS")
|
||||
)
|
||||
|
||||
interaction.send({ embeds: [prompt], components: [opt] });
|
||||
interaction.send({ embeds: [prompt], components: [opt], ephemeral: true });
|
||||
|
||||
client.on("interactionCreate", ButtonInteraction => {
|
||||
if(!ButtonInteraction.isButton()) return;
|
||||
@@ -788,7 +788,7 @@ module.exports = {
|
||||
.setStyle("SUCCESS")
|
||||
)
|
||||
|
||||
interaction.send({ embeds: [prompt], components: [opt] });
|
||||
interaction.send({ embeds: [prompt], components: [opt], ephemeral: true });
|
||||
|
||||
client.on("interactionCreate", ButtonInteraction => {
|
||||
if(!ButtonInteraction.isButton()) return;
|
||||
@@ -862,7 +862,7 @@ module.exports = {
|
||||
.setStyle("SUCCESS")
|
||||
)
|
||||
|
||||
interaction.send({ embeds: [prompt], components: [opt] });
|
||||
interaction.send({ embeds: [prompt], components: [opt], ephemeral: true });
|
||||
|
||||
client.on("interactionCreate", ButtonInteraction => {
|
||||
if(!ButtonInteraction.isButton()) return;
|
||||
|
||||
Reference in new issue
Block a user