From 4c98182da7a010627fb59b885c996febe6c44946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Tue, 20 Dec 2022 03:44:00 +0100 Subject: [PATCH] Fix small emoji translation issue --- .../java/wtf/beatrice/hidekobot/commands/base/CoinFlip.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/wtf/beatrice/hidekobot/commands/base/CoinFlip.java b/src/main/java/wtf/beatrice/hidekobot/commands/base/CoinFlip.java index f0c7cdd..445803e 100644 --- a/src/main/java/wtf/beatrice/hidekobot/commands/base/CoinFlip.java +++ b/src/main/java/wtf/beatrice/hidekobot/commands/base/CoinFlip.java @@ -17,7 +17,7 @@ public class CoinFlip public static Button getReflipButton() { return Button.primary("coinflip_reflip", "Flip again") - .withEmoji(Emoji.fromFormatted("\uD83E\uDE99")); + .withEmoji(Emoji.fromUnicode("\uD83E\uDE99")); } public static String genRandom()