--- Debug Control ---
()
| 1015 | // --- Debug Control --- |
| 1016 | |
| 1017 | func findPrismLauncher() (string, error) { |
| 1018 | if path, err := exec.LookPath("prismlauncher"); err == nil { |
| 1019 | return path, nil |
| 1020 | } |
| 1021 | return "", fmt.Errorf("Prism Launcher not found. Install it or turn off Auto Launch Game.") |
| 1022 | } |
| 1023 | |
| 1024 | func (a *App) StartDebug(mode string, selectedMods []string, autoLaunch bool) error { |
| 1025 | a.mu.Lock() |
no outgoing calls
no test coverage detected