Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paulevsGitch committed Jun 11, 2021
1 parent 29e6e5e commit e0a9d21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ru/bclib/api/WorldDataAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class WorldDataAPI {
public static void load(File dataDir) {
WorldDataAPI.dataDir = dataDir;
MODS.stream().parallel().forEach(modID -> {
File file = new File(dataDir, modID);
File file = new File(dataDir, modID + ".nbt");
CompoundTag root = new CompoundTag();
if (file.exists()) {
try {
Expand Down

0 comments on commit e0a9d21

Please sign in to comment.