From a747c43ffa666397fa1d443abc2d6184830ffb83 Mon Sep 17 00:00:00 2001 From: Kappeh Date: Sat, 8 Feb 2025 05:42:37 +0000 Subject: [PATCH] Fix formatting of external emojis in profile embed --- cipher_discord_bot/src/commands/profile.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cipher_discord_bot/src/commands/profile.rs b/cipher_discord_bot/src/commands/profile.rs index 4759ada..23703f2 100644 --- a/cipher_discord_bot/src/commands/profile.rs +++ b/cipher_discord_bot/src/commands/profile.rs @@ -564,13 +564,13 @@ impl ProfileEmbed { } if let Some(pokemon_go_code) = self.pokemon_go_code { - embed = embed.field(":PokemonGo: Pokémon Go Friend Code", pokemon_go_code, false); + embed = embed.field("<:PokemonGo:961206166812250156> Pokémon Go Friend Code", pokemon_go_code, false); } if let Some(pokemon_pocket_code) = self.pokemon_pocket_code { - embed = embed.field(":Pokeball: Pokémon TCG Pocket Friend Code", pokemon_pocket_code, false); + embed = embed.field("<:Pokeball:961206135535337513> Pokémon TCG Pocket Friend Code", pokemon_pocket_code, false); } if let Some(switch_code) = self.switch_code { - embed = embed.field(":switch: Nintendo Switch Friend Code", switch_code, false); + embed = embed.field("<:switch:1335457825161220111> Nintendo Switch Friend Code", switch_code, false); } embed