Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion app.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type RawReleaseInfo struct {
// App struct
type App struct {
latestReleaseJson []RawReleaseInfo
rlbotAddress string
rlbotAddress string
}

func (a *App) IgnoreMe(
Expand Down Expand Up @@ -344,6 +344,9 @@ func (a *App) StartMatch(options StartMatchOptions) Result {
launcher = flat.LauncherSteam
case "epic":
launcher = flat.LauncherEpic
case "legendary", "heroic":
launcher = flat.LauncherCustom
options.LauncherArg = options.Launcher
case "custom":
launcher = flat.LauncherCustom
case "nolaunch":
Expand Down
3 changes: 3 additions & 0 deletions loadout.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ func (options LoadoutPreviewOptions) GetPreviewMatch(existingMatchBehavior flat.
launcher = flat.LauncherSteam
case "epic":
launcher = flat.LauncherEpic
case "legendary", "heroic":
launcher = flat.LauncherCustom
options.LauncherArg = options.Launcher
case "custom":
launcher = flat.LauncherCustom
case "nolaunch":
Expand Down