diff --git a/core/src/main/java/com/seibel/distanthorizons/core/jar/EPlatform.java b/core/src/main/java/com/seibel/distanthorizons/core/jar/EPlatform.java index 9a9c55cda..0d19cfb82 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/jar/EPlatform.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/jar/EPlatform.java @@ -76,7 +76,7 @@ public enum EPlatform { // For MacOS it should either output "Mac OS X" or "Darwin" depending on the version of MacOS current = MACOS; } - else if (osName.startsWith("bsd")) + else if (osName.startsWith("bsd") || osName.startsWith("freebsd")) { // Depending on the BSD distro this will be different current = BSD; }