From 0d3e4648058c18d1fe1d21877a41c742a5cd1134 Mon Sep 17 00:00:00 2001 From: Cocodrulo <142546774+Cocodrulo@users.noreply.github.com> Date: Mon, 17 Feb 2025 18:48:02 +0000 Subject: [PATCH] Fix warning message by adding white color again --- shared/locale.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/locale.lua b/shared/locale.lua index 0491e39..71c9ee3 100644 --- a/shared/locale.lua +++ b/shared/locale.lua @@ -102,7 +102,7 @@ function Locale:t(key, subs) -- At this point we know whether the phrase does not exist for this key else if self.warnOnMissing then - print(('^3Warning: Missing phrase for key: "%s"'):format(key)) + print(('^3Warning: Missing phrase for key: "%s"^0'):format(key)) end if self.fallback then return self.fallback:t(key, subs)