From d694f615178bd143775f94676cd097b349a3582b Mon Sep 17 00:00:00 2001 From: DevelopingTom Date: Thu, 27 Nov 2025 01:39:52 +0100 Subject: [PATCH] Add factory & train emojis (#2522) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description: Add 🏭 & 🚂 emojis, which is commonly requested. Also 3 other emojis to fill the new emoji line: 🫴✋🙏 To be discussed: this adds a new line in the emoji list: is it too much? Eventually we could use categories to filter the emojis. image ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: IngloriousTom --- src/core/Util.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/core/Util.ts b/src/core/Util.ts index 3a6395e49..ff71c1a3d 100644 --- a/src/core/Util.ts +++ b/src/core/Util.ts @@ -307,15 +307,16 @@ export function createRandomName( export const emojiTable = [ ["😀", "😊", "🥰", "😇", "😎"], ["😞", "🥺", "😭", "😱", "😡"], - ["😈", "🤡", "🖕", "🥱", "🤦‍♂️"], - ["👋", "👏", "🤌", "💪", "🫡"], - ["👍", "👎", "❓", "🐔", "🐀"], + ["😈", "🤡", "🥱", "🫡", "🖕"], + ["👋", "👏", "✋", "🙏", "💪"], + ["👍", "👎", "🫴", "🤌", "🤦‍♂️"], ["🤝", "🆘", "🕊️", "🏳️", "⏳"], ["🔥", "💥", "💀", "☢️", "⚠️"], ["↖️", "⬆️", "↗️", "👑", "🥇"], ["⬅️", "🎯", "➡️", "🥈", "🥉"], ["↙️", "⬇️", "↘️", "❤️", "💔"], ["💰", "⚓", "⛵", "🏡", "🛡️"], + ["🏭", "🚂", "❓", "🐔", "🐀"], ] as const; // 2d to 1d array export const flattenedEmojiTable = emojiTable.flat();