Skip to content

Commit

Permalink
Merge pull request #473 from 43414d/main
Browse files Browse the repository at this point in the history
Remove -rcon arg statement
  • Loading branch information
thijsvanloef authored Mar 1, 2024
2 parents 5763114 + 3dbf063 commit c577c3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,7 @@ The manifest corresponds to the release date/update versions. Manifests can be f
| 1.4.0 | 4190579964382773830 |
| 1.4.1 | 6370735655629434989 |
| 1.5.0 | 3750364703337203431 |
| 1.5.1 | 2815085007637542021 |
## Reporting Issues/Feature Requests
Expand Down
1 change: 1 addition & 0 deletions docusaurus/docs/guides/pinning-game-version.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ The manifest corresponds to the release date/update versions. Manifests can be f
| 1.4.0 | 4190579964382773830 |
| 1.4.1 | 6370735655629434989 |
| 1.5.0 | 3750364703337203431 |
| 1.5.1 | 2815085007637542021 |
3 changes: 2 additions & 1 deletion scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ if [ "${MULTITHREADING,,}" = true ]; then
STARTCOMMAND+=("-useperfthreads" "-NoAsyncLoadingThread" "-UseMultithreadForDS")
fi

if [ "${RCON_ENABLED,,}" = true ]; then
# fix bug and enable rcon for v0.1.5.0 only
if [ "${TARGET_MANIFEST_ID}" == "3750364703337203431" ] && [ "${RCON_ENABLED,,}" = true ]; then
STARTCOMMAND+=("-rcon")
fi

Expand Down

0 comments on commit c577c3e

Please sign in to comment.