From 42736bd56615db962c9680cbf09699f95dfc58d4 Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Sun, 31 Mar 2024 14:53:36 +0200 Subject: [PATCH] Update APRIL_FOOLS_RESET string in Config class APRIL_FOOLS_RESET string in Config class has been updated from "reverse" to "esrever". This change updates the behavior of the April Fools feature in the chat application. --- api/src/main/java/com/alttd/chat/config/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/main/java/com/alttd/chat/config/Config.java b/api/src/main/java/com/alttd/chat/config/Config.java index 0c8d4a8..09a1864 100755 --- a/api/src/main/java/com/alttd/chat/config/Config.java +++ b/api/src/main/java/com/alttd/chat/config/Config.java @@ -544,7 +544,7 @@ public final class Config { NICK_CURRENT = getString("nicknames.messages.nick-current", NICK_CURRENT); } - public static String APRIL_FOOLS_RESET = "reverse"; + public static String APRIL_FOOLS_RESET = "esrever"; private static void aprilFools() { APRIL_FOOLS_RESET = getString("april-fools.reset", APRIL_FOOLS_RESET); }