Add Unlimited Players Mod to both Docker compose files

Incorporated the Unlimited Players Mod in the docker compose files for both steam and gog versions. This mod allows for a dynamic number of players to join, and the number can be set via the UNLIMITED_PLAYERS_PLAYER_LIMIT environment variable. Additionally, new configuration and manifest files were added for the UnlimitedPlayers mod.
This commit is contained in:
norimicry 2024-05-03 11:04:44 -04:00
parent 27490dd7a9
commit d6a008ded0
6 changed files with 30 additions and 0 deletions

View File

@ -105,6 +105,10 @@ environment:
- AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true}
- AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}
# Unlimited Players Mod
- ENABLE_UNLIMITEDPLAYERS_MOD=${ENABLE_UNLIMITEDPLAYERS-true}
- UNLIMITED_PLAYERS_PLAYER_LIMIT=${UNLIMITED_PLAYERS_PLAYER_LIMIT-8}
# Save Backup mod
## Disabling this will stop saves being backed up
- ENABLE_SAVEBACKUP_MOD=${ENABLE_SAVEBACKUP_MOD-true}

View File

@ -52,6 +52,10 @@ services:
- AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true}
- AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}
# Unlimited Players Mod
- ENABLE_UNLIMITEDPLAYERS_MOD=${ENABLE_UNLIMITEDPLAYERS-true}
- UNLIMITED_PLAYERS_PLAYER_LIMIT=${UNLIMITED_PLAYERS_PLAYER_LIMIT-10}
# Save Backup mod
## Disabling this will stop saves being backed up
- ENABLE_SAVEBACKUP_MOD=${ENABLE_SAVEBACKUP_MOD-true}

View File

@ -61,6 +61,10 @@ services:
- AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true}
- AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}
# Unlimited Players Mod
- ENABLE_UNLIMITEDPLAYERS_MOD=${ENABLE_UNLIMITEDPLAYERS-true}
- UNLIMITED_PLAYERS_PLAYER_LIMIT=${UNLIMITED_PLAYERS_PLAYER_LIMIT-10}
# Save Backup mod
## Disabling this will stop saves being backed up
- ENABLE_SAVEBACKUP_MOD=${ENABLE_SAVEBACKUP_MOD-true}

Binary file not shown.

View File

@ -0,0 +1,9 @@
{
"PlayerLimit": "${UNLIMITED_PLAYERS_PLAYER_LIMIT}",
"ClientMods": {
"Denylist": [
"CJBok.CheatsMenu",
"Ryaon.JunimoKartCheater"
]
}
}

View File

@ -0,0 +1,9 @@
{
"Author": "Armitxes",
"Description": "Remove the maximum player restrictions, build endless cabins.",
"Name": "Unlimited Players by Armitxes",
"EntryDll": "UnlimitedPlayers.dll",
"UniqueID": "Armitxes.UnlimitedPlayers",
"UpdateKeys": [ "GitHub:Armitxes/StardewValley_UnlimitedPlayers" ],
"Version": "2024.4.16"
}