diff --git a/src/main/java/biomesoplenty/core/BiomesOPlenty.java b/src/main/java/biomesoplenty/core/BiomesOPlenty.java index 39c6be27e..4171311ed 100644 --- a/src/main/java/biomesoplenty/core/BiomesOPlenty.java +++ b/src/main/java/biomesoplenty/core/BiomesOPlenty.java @@ -9,6 +9,7 @@ package biomesoplenty.core; import java.io.File; +import java.util.Locale; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -62,6 +63,9 @@ public class BiomesOPlenty { configDirectory = new File(event.getModConfigurationDirectory(), "biomesoplenty"); + //Fixes the Turkish dotless I bug + Locale.setDefault(Locale.ENGLISH); + TrailManager.retrieveTrails(); ModConfiguration.init(configDirectory);