Skip to content

Commit

Permalink
Fix custom map style config path
Browse files Browse the repository at this point in the history
  • Loading branch information
SmylerMC committed Sep 17, 2024
1 parent bf59067 commit 6343671
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void onInitialize() {
.map(ModMetadata::getVersion)
.orElse(new StringVersion("Unknown"));
this.logger.info("Initializing Terramap version {}", this.version());
this.rasterTileSetManager = new RasterTileSetManager(fabric.getConfigDir().toFile());
this.rasterTileSetManager = new RasterTileSetManager(fabric.getConfigDir().resolve("terramap_user_styles.json").toFile());
Terramap.InstanceHolder.setInstance(this);
SmyLib.initializeGameClient(new WrappedMinecraft(Minecraft.getInstance()), this.logger);
GameClient client = getGameClient();
Expand Down

0 comments on commit 6343671

Please sign in to comment.