This commit is contained in:
Brady 2018-11-11 15:46:07 -06:00
parent 355443e440
commit fad5a6deac
No known key found for this signature in database
GPG Key ID: 73A788379A197567
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public class WorldProvider implements IWorldProvider, Helper {
} catch (IOException ignored) {}
}
System.out.println("Baritone world data dir: " + dir);
this.currentWorld = this.worldCache.computeIfAbsent(dir, d -> new WorldData(d, dimensionID));
this.currentWorld = worldCache.computeIfAbsent(dir, d -> new WorldData(d, dimensionID));
}
public final void closeWorld() {