From f09180659d28d8a89e81f2ffef2d6b79cbfe5bc0 Mon Sep 17 00:00:00 2001 From: KHobbits Date: Tue, 6 May 2014 07:00:57 +0100 Subject: [PATCH] Initialize TL Bundle on plugin start. --- Essentials/src/com/earth2me/essentials/I18n.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/I18n.java b/Essentials/src/com/earth2me/essentials/I18n.java index 3cf8c3a5d..478b6b5d1 100644 --- a/Essentials/src/com/earth2me/essentials/I18n.java +++ b/Essentials/src/com/earth2me/essentials/I18n.java @@ -43,9 +43,9 @@ public class I18n implements net.ess3.api.II18n public I18n(final IEssentials ess) { this.ess = ess; - customBundle = NULL_BUNDLE; - localeBundle = NULL_BUNDLE; defaultBundle = ResourceBundle.getBundle(MESSAGES, Locale.ENGLISH); + localeBundle = defaultBundle; + customBundle = NULL_BUNDLE; } public void onEnable()