diff --git a/commands/interaction/slash/utils/emojipedia.js b/commands/interaction/slash/utils/emojipedia.js index 2a0cd10..398fc5b 100644 --- a/commands/interaction/slash/utils/emojipedia.js +++ b/commands/interaction/slash/utils/emojipedia.js @@ -101,7 +101,7 @@ module.exports = { }, description: newView.data.codes.map((c)=>pill(c)).join(' ') + "\n\n" + newView.data.metadata.description, image: { - url: newIcon || STATIC_ASSETS.emoji_placeholder + url: newIcon || STATIC_ASSETS.emoji_placeholder_large }, footer: { iconUrl: STATICS.emojipedia, @@ -148,7 +148,7 @@ module.exports = { currentView = createEmbed("default", context, { author: { // TODO: emoji_placeholder_small - iconUrl: ico || STATIC_ASSETS.emoji_placeholder, + iconUrl: ico || STATIC_ASSETS.emoji_placeholder_large, name: `${res.data.name} • Emoji ${res.data.metadata.version.emoji}`, url: res.data.link }, diff --git a/commands/message/utils/emojipedia.js b/commands/message/utils/emojipedia.js index 44f2983..26cce27 100644 --- a/commands/message/utils/emojipedia.js +++ b/commands/message/utils/emojipedia.js @@ -87,7 +87,7 @@ module.exports = { currentView = createEmbed("default", context, { author: { // TODO: emoji_placeholder_small - iconUrl: newIcon || STATIC_ASSETS.emoji_placeholder, + iconUrl: newIcon || STATIC_ASSETS.emoji_placeholder_large, name: `${newView.data.name} `, url: newView.data.link }, @@ -144,7 +144,7 @@ module.exports = { currentView = createEmbed("default", context, { author: { // TODO: emoji_placeholder_small - iconUrl: ico || STATIC_ASSETS.emoji_placeholder, + iconUrl: ico || STATIC_ASSETS.emoji_placeholder_large, name: `${res.data.name} `, url: res.data.link }, diff --git a/labscore/utils/statics.js b/labscore/utils/statics.js index e50a4d1..fe1851f 100644 --- a/labscore/utils/statics.js +++ b/labscore/utils/statics.js @@ -30,6 +30,10 @@ const Statics = Object.freeze({ file: "misc/emoji-placeholder.png", revision: 0 }, + emoji_placeholder_large: { + file: "misc/emoji-placeholder-large.png", + revision: 0 + }, }, brands: { anthropic: { @@ -277,7 +281,8 @@ module.exports.STATIC_ASSETS = Object.freeze({ chat_loading_small: staticAsset(Statics.assets.chat_loading_small), image_loading: staticAsset(Statics.assets.image_loading), embed_invite_spacer: staticAsset(Statics.assets.embed_invite_spacer), - emoji_placeholder: staticAsset(Statics.assets.emoji_placeholder) + emoji_placeholder: staticAsset(Statics.assets.emoji_placeholder), + emoji_placeholder_large: staticAsset(Statics.assets.emoji_placeholder_large) }) module.exports.STATIC_ACTIONS = Object.freeze({