diff --git a/README.md b/README.md index 18b1ac5..79fea85 100644 --- a/README.md +++ b/README.md @@ -208,15 +208,14 @@ for more info.) ## Mods -- [Always On Server](https://www.nexusmods.com/stardewvalley/mods/2677) (Default: Required) +- [Always On Server](https://www.nexusmods.com/stardewvalley/mods/2677) ([fork](https://github.com/perkmi/Always-On-Server-for-Multiplayer)) (Default: Required) - [Auto Load Game](https://www.nexusmods.com/stardewvalley/mods/2509) (Default: On) +- [Unlimited Players](https://www.nexusmods.com/stardewvalley/mods/2213) (Default: On) - [Crops Anytime Anywhere](https://www.nexusmods.com/stardewvalley/mods/3000) (Default: Off) - [Friends Forever](https://www.nexusmods.com/stardewvalley/mods/1738) (Default: Off) - [No Fence Decay](https://www.nexusmods.com/stardewvalley/mods/1180) (Default: Off) - [Non Destructive NPCs](https://www.nexusmods.com/stardewvalley/mods/5176) (Default: Off) -- [Remote Control](https://github.com/Novex/stardew-remote-control) (Default: On) - [TimeSpeed](https://www.nexusmods.com/stardewvalley/mods/169) (Default: Off) -- [Unlimited Players](https://www.nexusmods.com/stardewvalley/mods/2213) (Default: On) ## Troubleshooting diff --git a/docker/docker-entrypoint-steam.sh b/docker/docker-entrypoint-steam.sh index 2bca5c8..0f47437 100644 --- a/docker/docker-entrypoint-steam.sh +++ b/docker/docker-entrypoint-steam.sh @@ -26,8 +26,6 @@ do done # Run extra steps for certain mods -/opt/configure-remotecontrol-mod.sh - /opt/tail-smapi-log.sh & # Ready to start! diff --git a/docker/scripts/configure-remotecontrol-mod.sh b/docker/scripts/configure-remotecontrol-mod.sh deleted file mode 100644 index 3515e8f..0000000 --- a/docker/scripts/configure-remotecontrol-mod.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -# Quit if we don't have any default admins -if [ -z "${REMOTE_CONTROL_DEFAULT_ADMINS}" ] || [ ! -f "/data/Stardew/game/Mods/RemoteControl/config.json" ]; then - return -fi - -# Add default admins to the admin list -jq ".admins[.admins | length] |= . + ${REMOTE_CONTROL_DEFAULT_ADMINS}" "/data/Stardew/game/Mods/RemoteControl/config.json" > "/data/Stardew/game/Mods/RemoteControl/config.json.out" -mv -f "/data/Stardew/game/Mods/RemoteControl/config.json.out" "/data/Stardew/game/Mods/RemoteControl/config.json"