several small adjustments smiley

This commit is contained in:
bignutty 2024-08-08 23:11:40 +02:00
parent f280311212
commit cd624c9066
4 changed files with 47 additions and 37 deletions

View file

@ -61,7 +61,9 @@ module.exports.ICONS = Object.freeze({
"flask_mini": "<:ico_subt_flask:1263593669215256597>",
"subtext_lightbulb": "<:ico_subt_lightbulb:1263593690358616084>",
"button_mag": "<:ico_button_mag:1271212564122173552>",
"button_thermometer": "<:ico_button_thermometer:1263593823016062987>",
"button_trash": "<:ico_button_trash:1271212355883372716>",
"button_user_profile_swap": "<:ico_button_user_profile_swap:1263594003442700368>",
"button_chevron_left": "<:button_chevron_left:1263594121256374413>",
@ -227,6 +229,14 @@ module.exports.MUSIC_PLATFORM_ICONS = Object.freeze({
"youtubeMusic": "1271169027124760736"
})
module.exports.COMPONENT_BUTTON_ICONS = Object.freeze({
NEXT: this.ICONS.button_chevron_right,
PREVIOUS: this.ICONS.button_chevron_left,
STOP: this.ICONS.button_trash,
SEARCH: this.ICONS.button_mag,
UNKNOWN: this.ICONS.question_large
})
module.exports.GUILD_FEATURE_ICONS_REDESIGN = Object.freeze({
"ActivitiesIcon": "<:ico_d_activities:1263595238929334272>",
"AnnouncementsIcon": "<:ico_d_announcements:1263595270684545205>",
@ -276,6 +286,7 @@ module.exports.GUILD_FEATURE_ICONS_REDESIGN = Object.freeze({
"VoiceIcon": "<:ico_d_voicenormal:1263596678087446548>",
})
// This list should be synced with https://docs.discord.sex/resources/guild#guild-features
module.exports.GUILD_FEATURES = Object.freeze({
"ACTIVITIES_ALPHA": { icon: this.GUILD_FEATURE_ICONS_REDESIGN.ActivitiesIcon },
"ACTIVITIES_EMPLOYEE": { icon: this.GUILD_FEATURE_ICONS_REDESIGN.ActivitiesIcon },
@ -1110,4 +1121,22 @@ module.exports.YOUTUBE_CATEGORIES = {
}
// Special character that allows for fully hidden masked links on all (supported) platforms.
module.exports.HIDDEN_MASKED_LINK_CHARACTER = "󠄴";
module.exports.HIDDEN_MASKED_LINK_CHARACTER = "󠄴";
/**
* These will force the command to become "incognito".
*/
module.exports.MESSAGE_BLOCK_REASONS = Object.freeze({
20016: {
message: "the channel's slowmode settings",
support_article: 360016150952
},
200000: {
message: "the server's AutoMod setup",
support_article: 4421269296535
},
// TODO: Handle permissions properly, this works as a "hack" for now.
50013: {
message: "the channel's permission setup",
support_article: 10543994968087
}
});