forked from GeyserMC/Geyser
Removed debugging line
This commit is contained in:
parent
49df48fcf0
commit
9a6b537e89
1 changed files with 1 additions and 4 deletions
|
@ -122,10 +122,7 @@ public class MessageUtils {
|
|||
if (localeStrings == null)
|
||||
localeStrings = Toolbox.LOCALE_MAPPINGS.get(GeyserConnector.getInstance().getConfig().getDefaultLocale());
|
||||
|
||||
String newLocaleString = localeStrings.getOrDefault(messageText, messageText);
|
||||
|
||||
GeyserConnector.getInstance().getLogger().info("Converting '" + messageText + "' -> '" + newLocaleString + "'");
|
||||
return newLocaleString;
|
||||
return localeStrings.getOrDefault(messageText, messageText);
|
||||
}
|
||||
|
||||
public static String getBedrockMessage(Message message) {
|
||||
|
|
Loading…
Reference in a new issue