From 8ee960e0028d171f1e7c215cc5491f8eaf9adfa8 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Tue, 15 Mar 2022 17:54:10 +0100 Subject: [PATCH] Fix message --- src/de/steamwar/bungeecore/Message.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/de/steamwar/bungeecore/Message.java b/src/de/steamwar/bungeecore/Message.java index 06fa54f..4356bcf 100644 --- a/src/de/steamwar/bungeecore/Message.java +++ b/src/de/steamwar/bungeecore/Message.java @@ -101,7 +101,7 @@ public class Message { } if (current == null) { - throw new SecurityException("Could not find resource bundle for " + path + " with locale " + locale + " or " + locale.getLanguage()); + throw new SecurityException("Could not find resource bundle for " + path); } return bundles.get(locale.toString()); }