Skip to content

Commit

Permalink
1 Message to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsvanloef committed Dec 23, 2024
1 parent a6f88c6 commit 975af41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion scripts/compile-settings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 975af41

Please sign in to comment.