Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private Path[] getRegionFiles() {
if (!fileName.startsWith("r.")) {
return false;
}
return fileName.endsWith(".mca") || fileName.endsWith(".linear");
return fileName.endsWith(".mca") || fileName.endsWith(".linear") || fileName.endsWith(".b_linear");
}).toArray(Path[]::new);
} catch (final IOException ex) {
throw new RuntimeException("Failed to list region files in directory '" + regionFolder.toAbsolutePath() + "'", ex);
Expand Down