Skip to content

Commit

Permalink
fix: assets was not correctly migrated during merge (fixes #11)
Browse files Browse the repository at this point in the history
  • Loading branch information
mworzala committed Sep 16, 2023
1 parent 8baea7c commit a89971f
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 @@ -292,7 +292,7 @@ func mergeSpec(spec, base *gameModel.VersionSpec) *gameModel.VersionSpec {
if spec.Assets != "" {
result.Assets = spec.Assets
} else {
result.Assets = base.MainClass
result.Assets = base.Assets
}

result.Arguments.JVM = append(spec.Arguments.JVM, base.Arguments.JVM...)
Expand Down

0 comments on commit a89971f

Please sign in to comment.