From dcbe813f24c3346997aeea92544e919475bfaeac Mon Sep 17 00:00:00 2001 From: Rei Armenia Date: Thu, 21 Jul 2016 01:01:29 -0400 Subject: [PATCH 1/2] Fix for Turkish Locale bug! --- src/main/java/biomesoplenty/core/BiomesOPlenty.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/biomesoplenty/core/BiomesOPlenty.java b/src/main/java/biomesoplenty/core/BiomesOPlenty.java index 75f091af6..f993987d6 100644 --- a/src/main/java/biomesoplenty/core/BiomesOPlenty.java +++ b/src/main/java/biomesoplenty/core/BiomesOPlenty.java @@ -65,6 +65,10 @@ public class BiomesOPlenty { configDirectory = new File(event.getModConfigurationDirectory(), "biomesoplenty"); + //fixes turkish locale bug + Locale.setDefault(Locale.ENGLISH); + + TrailManager.retrieveTrails(); ModConfiguration.init(configDirectory); From 2b0366860f090caaa76178098767053aa4f47194 Mon Sep 17 00:00:00 2001 From: Rei Armenia Date: Thu, 21 Jul 2016 01:02:54 -0400 Subject: [PATCH 2/2] Update BiomesOPlenty.java --- src/main/java/biomesoplenty/core/BiomesOPlenty.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/biomesoplenty/core/BiomesOPlenty.java b/src/main/java/biomesoplenty/core/BiomesOPlenty.java index f993987d6..b5f10db04 100644 --- a/src/main/java/biomesoplenty/core/BiomesOPlenty.java +++ b/src/main/java/biomesoplenty/core/BiomesOPlenty.java @@ -68,7 +68,6 @@ public class BiomesOPlenty //fixes turkish locale bug Locale.setDefault(Locale.ENGLISH); - TrailManager.retrieveTrails(); ModConfiguration.init(configDirectory);