summaryrefslogtreecommitdiff
path: root/platform-paper/src/main/resources/config.yml
diff options
context:
space:
mode:
Diffstat (limited to 'platform-paper/src/main/resources/config.yml')
-rw-r--r--platform-paper/src/main/resources/config.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/platform-paper/src/main/resources/config.yml b/platform-paper/src/main/resources/config.yml
index f8b8d83..f1ebe64 100644
--- a/platform-paper/src/main/resources/config.yml
+++ b/platform-paper/src/main/resources/config.yml
@@ -15,6 +15,9 @@
# If enabled, Activate LunaticChat's debug mode, which provides detailed logging for troubleshooting.
debug: false
+# Path to the YAML file storing player settings
+userSettingsFilePath: "player-settings.yaml"
+
# ----------------------------------------------
# ----------- Features Settings ------------
# ----------------------------------------------
@@ -27,14 +30,17 @@ features:
# If enabled, enables the conversion function from Roman letters to hiragana.
enabled: false
cache:
+ # Specifies the maximum number of entries to store in the Romanization conversion cache.
maxEntries: 500
+ # Specify the interval (in seconds) for saving the Romanization conversion cache to disk.
saveIntervalSeconds: 300
+ # Specify the file path where the cache for Romanization conversion is saved.
filePath: "conversion_cache.json"
api:
+ # Specify the timeout duration (in milliseconds) for API requests to the Romanization conversion service.
timeout: 3000
+ # Specify the number of retry attempts for failed API requests to the Romanization conversion service.
retryAttempts: 2
- settings:
- directory: "settings"
# ----------------------------------------------
# --------- Message Format Settings --------