1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Fix #16365: Broken link referenced in manpages and help output

Link to file never existed, changed to a link that's clearly a placeholder so users can avoid broken links. Example park file could also be uploaded to https://openrct2.io/files/SnowyPark.sv6
This commit is contained in:
Noah Kellogg
2022-03-20 12:54:53 -04:00
committed by GitHub
parent 37965560a9
commit 25f76dc554
2 changed files with 3 additions and 3 deletions

View File

@@ -255,14 +255,14 @@ work - forever. The only thing changed is that you can no longer save to .SV6, i
saved as .park.
.sp
.Sh EXAMPLES
.Bl -tag -width "openrct2 https://openrct2.io/files/SnowyPark.sv6 "
.Bl -tag -width "openrct2 https://example.org/files/ExamplePark.sv6 "
.It openrct2 ./my_park.sv6
Open a saved park.
.It openrct2 ./SnowyPark.sc6
Install and open a scenario.
.It openrct2 ./ShuttleLoop.td6
Install a track.
.It openrct2 https://openrct2.io/files/SnowyPark.sv6
.It openrct2 https://example.org/files/ExamplePark.sv6
Download and open a saved park.
.It openrct2 host ./my_park.sv6 --port 11753 --headless
Run a headless server for a saved park.

View File

@@ -153,7 +153,7 @@ const CommandLineExample CommandLine::RootExamples[]
{ "./SnowyPark.sc6", "install and open a scenario" },
{ "./ShuttleLoop.td6", "install a track" },
#ifndef DISABLE_HTTP
{ "https://openrct2.io/files/SnowyPark.sv6", "download and open a saved park" },
{ "https://example.org/files/ExamplePark.sv6", "download and open a saved park" },
#endif
#ifndef DISABLE_NETWORK
{ "host ./my_park.sv6 --port 11753 --headless", "run a headless server for a saved park" },