Skip to content

Commit fc7dd80

Browse files
authored
keep embed colors consistent
Removed color setting for embed in status command.
1 parent 406771a commit fc7dd80

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/commands/status.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,13 @@ class UserCommand extends Command {
4343
"The Creative Server is currently unlocked and is due to be overwritten at",
4444
)
4545
.setDescription(`<t:${Math.floor(d.getTime() / 1000)}:f>`)
46-
.setColor("#FF91AF");
4746
} else {
4847
embed = new EmbedBuilder()
4948
.setTitle("The Creative Server is currently locked by:")
5049
.setDescription(
5150
`<@${lock.users.map((obj) => Object.keys(obj)[0]).join(">\n <@")}>` +
5251
` \n \nCreative server has been locked since: <t:${Math.floor(lock.first_locked / 1000)}:f>`,
5352
)
54-
.setColor("#FF91AF");
5553
}
5654
await interaction.reply({ embeds: [embed] });
5755
}

0 commit comments

Comments
 (0)