Skip to content

Commit

Permalink
Added missing tips for when firewall permission might be needed
Browse files Browse the repository at this point in the history
  • Loading branch information
luskaner committed Aug 10, 2024
1 parent 53f9cb7 commit 4592412
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion launcher/internal/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ var (
return
}
}
fmt.Printf("Waiting 15 seconds for server announcements on LAN on port(s) %s (we are v. %d)...\n", strings.Join(announcePorts, ", "), common.AnnounceVersionLatest)
fmt.Printf("Waiting 15 seconds for server announcements on LAN on port(s) %s (we are v. %d), you might need to allow 'launcher.exe' in the firewall...\n", strings.Join(announcePorts, ", "), common.AnnounceVersionLatest)
errorCode, selectedServerHost := cmdUtils.ListenToServerAnnouncementsAndSelect(portsInt)
if errorCode != common.ErrSuccess {
return
Expand Down
2 changes: 1 addition & 1 deletion launcher/internal/cmdUtils/game.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (c *Config) LaunchAgentAndGame(executable string, canTrustCertificate strin
}
}
if broadcastBattleServer || len(c.serverExe) > 0 || c.RequiresConfigRevert() {
fmt.Println("Starting agent, accept any dialog from 'agent.exe' if it appears...")
fmt.Println("Starting agent, accept any dialog from 'agent.exe' (including the firewall) if it appears...")
steamProcess, microsoftStoreProcess := executer.GameProcesses()
result := executor.RunAgent(steamProcess, microsoftStoreProcess, c.serverExe, broadcastBattleServer, c.unmapIPs, c.removeUserCert, c.removeLocalCert, c.restoreMetadata, c.restoreProfiles)
if !result.Success() {
Expand Down

0 comments on commit 4592412

Please sign in to comment.