diff --git a/LaunchServer/src/main/java/pro/gravit/launchserver/auth/profiles/LocalProfilesProvider.java b/LaunchServer/src/main/java/pro/gravit/launchserver/auth/profiles/LocalProfilesProvider.java index 228de8c0..311c4453 100644 --- a/LaunchServer/src/main/java/pro/gravit/launchserver/auth/profiles/LocalProfilesProvider.java +++ b/LaunchServer/src/main/java/pro/gravit/launchserver/auth/profiles/LocalProfilesProvider.java @@ -348,7 +348,7 @@ public LocalProfile(ClientProfile profile, HashedDir clientDir, HashedDir assetD this.profile = profile; this.clientDir = clientDir; this.assetDir = assetDir; - this.configPath = Path.of(profilesDir).resolve(profile.getDir()); + this.configPath = Path.of(profilesDir).resolve(profile.getDir().concat(".json")); } public LocalProfile(ClientProfile profile, HashedDir clientDir, HashedDir assetDir, Path configPath) {