From 4c7ec9ec216c3775ca41b7d647d8949f70d9c742 Mon Sep 17 00:00:00 2001 From: William Date: Fri, 9 Aug 2024 16:53:26 +0100 Subject: [PATCH] docs: update config file --- docs/Config-File.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/Config-File.md b/docs/Config-File.md index 1b79a1d1..e3805eb2 100644 --- a/docs/Config-File.md +++ b/docs/Config-File.md @@ -134,9 +134,14 @@ synchronization: # Commands which should be blocked before a player has finished syncing (Use * to block all commands) blacklisted_commands_while_locked: - '*' - # For attribute syncing, which attributes should be ignored/skipped when syncing - # (e.g. ['minecraft:generic.max_health', 'minecraft:generic.attack_damage']) - ignored_attributes: [] + # Configuration for how to sync attributes + attributes: + # Which attributes should not be saved when syncing users. Supports wildcard matching. + # (e.g. ['minecraft:generic.max_health', 'minecraft:generic.*']) + ignored_attributes: [] + # Which modifiers should not be saved when syncing users. Supports wildcard matching. + # (e.g. ['minecraft:effect.speed', 'minecraft:effect.*']) + ignored_modifiers: ['minecraft:effect.*', 'minecraft:creative_mode_*'] # Event priorities for listeners (HIGHEST, NORMAL, LOWEST). Change if you encounter plugin conflicts event_priorities: quit_listener: LOWEST