Skip to content

Commit

Permalink
replace random colors
Browse files Browse the repository at this point in the history
  • Loading branch information
bloodcloak committed Jun 8, 2024
1 parent 738ca9d commit 16fb940
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion events/modalInteraction.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ module.exports = {
value: question.response,
}))
)
.setColor("Random")
.setColor("#B57EDC")
.setAuthor({ name: interaction.user.tag, iconURL: interaction.user.displayAvatarURL() })
.setTimestamp();

Expand Down
2 changes: 1 addition & 1 deletion interactions/buttons/operation/cancel.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
async execute(interaction) {
const embed = new EmbedBuilder()
.setDescription(`Close request cancelled by ${interaction.user}.`)
.setColor("Random")
.setColor("#B57EDC")

await db("tickets")
.update({ close_requested_at: null })
Expand Down
2 changes: 1 addition & 1 deletion interactions/buttons/operation/closeRequest.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {

let embed = new EmbedBuilder()
.setDescription(`${interaction.user} wants to close the ticket.`)
.setColor("Random")
.setColor("#F1C40F")

const ticket = await db("tickets")
.select("*")
Expand Down
2 changes: 1 addition & 1 deletion interactions/slash/operation/close.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {

let embed = new EmbedBuilder()
.setDescription(`${interaction.user} wants to close the ticket.`)
.setColor("Random")
.setColor("#F1C40F")

const ticket = await db("tickets")
.select("*")
Expand Down

0 comments on commit 16fb940

Please sign in to comment.