From da51deaa3cd078eb17c998e921477afe648e73ff Mon Sep 17 00:00:00 2001 From: Zorbatron <46525467+Zorbatron@users.noreply.github.com> Date: Thu, 21 Aug 2025 21:47:24 -0400 Subject: [PATCH] Allow LangKeys to work when MC is loading --- .../java/com/cleanroommc/modularui/drawable/text/LangKey.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/cleanroommc/modularui/drawable/text/LangKey.java b/src/main/java/com/cleanroommc/modularui/drawable/text/LangKey.java index 6e910114b..377747711 100644 --- a/src/main/java/com/cleanroommc/modularui/drawable/text/LangKey.java +++ b/src/main/java/com/cleanroommc/modularui/drawable/text/LangKey.java @@ -15,7 +15,7 @@ public class LangKey extends BaseKey { private final Supplier keySupplier; private final Supplier argsSupplier; private String string; - private long time = 0; + private long time = -1; public LangKey(@NotNull String key) { this(key, () -> null);