From 975af415c94997361015b4943f7dcc6766380fde Mon Sep 17 00:00:00 2001 From: Thijs van Loef Date: Mon, 23 Dec 2024 12:42:20 +0100 Subject: [PATCH] 1 Message to 10 --- README.md | 2 +- docusaurus/docs/getting-started/configuration/game-settings.md | 2 +- scripts/compile-settings.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 32dec8de..e8ca18b2 100644 --- a/README.md +++ b/README.md @@ -640,7 +640,7 @@ For example: | USEAUTH | Use authentication | True | Boolean | | BAN_LIST_URL | Which ban list to use | [https://api.palworldgame.com/api/banlist.txt](https://api.palworldgame.com/api/banlist.txt) | string | | SHOW_PLAYER_LIST | Enable show player list | True | Boolean | -| CHAT_POST_LIMIT_PER_MINUTE | Amount of messages players can send per minute | 1 | Integer | +| CHAT_POST_LIMIT_PER_MINUTE | Amount of messages players can send per minute | 10 | Integer | | SUPPLY_DROP_SPAN | Interval for supply drop (minutes) | 180 | Integer | | ENABLE_PREDATOR_BOSS_PAL | Enable Predator boss as pals | true | boolean | | MAX_BUILDING_LIMIT_NUM | Maximum number of buildings per base | 0 (unlimited) | Integer | diff --git a/docusaurus/docs/getting-started/configuration/game-settings.md b/docusaurus/docs/getting-started/configuration/game-settings.md index 2c570354..da6a903d 100644 --- a/docusaurus/docs/getting-started/configuration/game-settings.md +++ b/docusaurus/docs/getting-started/configuration/game-settings.md @@ -97,7 +97,7 @@ For example: | USEAUTH | Use authentication | True | Boolean | | BAN_LIST_URL | Which ban list to use | [https://api.palworldgame.com/api/banlist.txt](https://api.palworldgame.com/api/banlist.txt) | string | | SHOW_PLAYER_LIST | Enable show player list | True | Boolean | -| CHAT_POST_LIMIT_PER_MINUTE | Amount of messages players can send per minute | 1 | Integer | +| CHAT_POST_LIMIT_PER_MINUTE | Amount of messages players can send per minute | 10 | Integer | | SUPPLY_DROP_SPAN | Interval for supply drop (minutes) | 180 | Integer | | TARGET_MANIFEST_ID | Locks game version to corespond with Manfiest ID from Steam Download Depot. | | See [Manifest ID Table](https://palworld-server-docker.loef.dev/guides/pinning-game-version) | | ENABLE_PLAYER_LOGGING | Enables Logging and announcing when players join and leave | true | true/false | diff --git a/scripts/compile-settings.sh b/scripts/compile-settings.sh index 58bd7ac8..4cbb3cfd 100755 --- a/scripts/compile-settings.sh +++ b/scripts/compile-settings.sh @@ -96,7 +96,7 @@ export BAN_LIST_URL=\"${BAN_LIST_URL:-https://api.palworldgame.com/api/banlist.t export REST_API_ENABLED=\"${REST_API_ENABLED:-False}\" export REST_API_PORT=\"${REST_API_PORT:-8212}\" export SHOW_PLAYER_LIST=${SHOW_PLAYER_LIST:-True} -export CHAT_POST_LIMIT_PER_MINUTE=${CHAT_POST_LIMIT_PER_MINUTE:-1} +export CHAT_POST_LIMIT_PER_MINUTE=${CHAT_POST_LIMIT_PER_MINUTE:-10} export ALLOW_CONNECT_PLATFORM=${ALLOW_CONNECT_PLATFORM:-Steam} export USE_BACKUP_SAVE_DATA=${USE_BACKUP_SAVE_DATA:-True} export SUPPLY_DROP_SPAN=${SUPPLY_DROP_SPAN:-180}