diff --git a/README.md b/README.md
index da6e4c26f..62a68a110 100644
--- a/README.md
+++ b/README.md
@@ -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
 
diff --git a/docusaurus/docs/guides/pinning-game-version.md b/docusaurus/docs/guides/pinning-game-version.md
index 4d60aef9b..abdafc3e9 100644
--- a/docusaurus/docs/guides/pinning-game-version.md
+++ b/docusaurus/docs/guides/pinning-game-version.md
@@ -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  |
diff --git a/scripts/start.sh b/scripts/start.sh
index 53c372ba3..6016f0dd2 100644
--- a/scripts/start.sh
+++ b/scripts/start.sh
@@ -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