diff --git a/proxy/src/main/java/com/velocitypowered/proxy/VelocityServer.java b/proxy/src/main/java/com/velocitypowered/proxy/VelocityServer.java index 95f10bcbb0..32adfb6d2e 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/VelocityServer.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/VelocityServer.java @@ -386,6 +386,14 @@ private void registerTranslations() { }); } + try { + translationRegistry.registerAll(Locale.US, path.resolve("messages.properties"), + false); + } catch (IllegalArgumentException ignored) { + // Ignore duplicate translation key errors. We're loading these as fallback, so keys + // might already be present from the lang directory. + } + } catch (IOException e) { logger.error("Encountered an I/O error whilst loading translations", e); }