Remove remotecontrol references, add fork url

This commit is contained in:
Evert Prants 2024-11-11 18:25:43 +02:00
parent 4d52783692
commit 5b00a2dffd
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
3 changed files with 2 additions and 15 deletions

View File

@ -208,15 +208,14 @@ for more info.)
## Mods ## 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) - [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) - [Crops Anytime Anywhere](https://www.nexusmods.com/stardewvalley/mods/3000) (Default: Off)
- [Friends Forever](https://www.nexusmods.com/stardewvalley/mods/1738) (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) - [No Fence Decay](https://www.nexusmods.com/stardewvalley/mods/1180) (Default: Off)
- [Non Destructive NPCs](https://www.nexusmods.com/stardewvalley/mods/5176) (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) - [TimeSpeed](https://www.nexusmods.com/stardewvalley/mods/169) (Default: Off)
- [Unlimited Players](https://www.nexusmods.com/stardewvalley/mods/2213) (Default: On)
## Troubleshooting ## Troubleshooting

View File

@ -26,8 +26,6 @@ do
done done
# Run extra steps for certain mods # Run extra steps for certain mods
/opt/configure-remotecontrol-mod.sh
/opt/tail-smapi-log.sh & /opt/tail-smapi-log.sh &
# Ready to start! # Ready to start!

View File

@ -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"