Skip to content

Commit

Permalink
fix: oops (fixes #10 part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
mworzala committed Sep 16, 2023
1 parent a89971f commit 9889283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/game/launch/launch.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func LaunchProfile(dataDir string, p *profile.Profile, acc *account.Account, acc
libPath := path.Join(librariesPath, lib.Downloads.Artifact.Path)
classpath.WriteString(libPath)
} else if lib.Url != "" { // Direct maven library
parts := strings.Split(lib.Name, platform.ClasspathSeparator())
parts := strings.Split(lib.Name, ":")
groupId := parts[0]
artifactName := parts[1]
version := parts[2]
Expand Down

0 comments on commit 9889283

Please sign in to comment.