refactor: update configs

No actual visible changes here since it's just refreshing the configs.
Spam exclusions and replace commands were never actually used, they're only being blanked out for clarity.
This commit is contained in:
amyavi 2025-03-25 22:54:27 -03:00
parent ef82e8b9d5
commit 7fbe0e7a38
No known key found for this signature in database
7 changed files with 21 additions and 10 deletions

1
.gitignore vendored
View file

@ -2,6 +2,7 @@ cache/
/libraries/ /libraries/
/logs/ /logs/
/plugins/.paper-remapped/ /plugins/.paper-remapped/
/plugins/CommandSpy/state.bin
/plugins/Essentials/userdata /plugins/Essentials/userdata
/plugins/Essentials/warps/* /plugins/Essentials/warps/*
/plugins/Essentials/custom_items.yml /plugins/Essentials/custom_items.yml

View file

@ -49,6 +49,7 @@ collisions:
enable-player-collisions: true enable-player-collisions: true
send-full-pos-for-hard-colliding-entities: true send-full-pos-for-hard-colliding-entities: true
commands: commands:
ride-command-allow-player-as-vehicle: false
suggest-player-names-when-null-tab-completions: true suggest-player-names-when-null-tab-completions: true
time-command-affects-all-worlds: false time-command-affects-all-worlds: false
console: console:
@ -140,7 +141,10 @@ unsupported-settings:
allow-unsafe-end-portal-teleportation: false allow-unsafe-end-portal-teleportation: false
compression-format: ZLIB compression-format: ZLIB
perform-username-validation: false perform-username-validation: false
simplify-remote-item-matching: false
skip-tripwire-hook-placement-validation: false
skip-vanilla-damage-tick-when-shield-blocked: false skip-vanilla-damage-tick-when-shield-blocked: false
update-equipment-on-player-actions: true
watchdog: watchdog:
early-warning-delay: 10000 early-warning-delay: 10000
early-warning-every: 5000 early-warning-every: 5000

View file

@ -82,6 +82,7 @@ entities:
behavior: behavior:
allow-spider-world-border-climbing: true allow-spider-world-border-climbing: true
baby-zombie-movement-modifier: 0.5 baby-zombie-movement-modifier: 0.5
cooldown-failed-beehive-releases: true
disable-chest-cat-detection: true disable-chest-cat-detection: true
disable-creeper-lingering-effect: false disable-creeper-lingering-effect: false
disable-player-crits: false disable-player-crits: false
@ -294,7 +295,6 @@ misc:
disable-relative-projectile-velocity: false disable-relative-projectile-velocity: false
disable-sprint-interruption-on-attack: false disable-sprint-interruption-on-attack: false
legacy-ender-pearl-behavior: false legacy-ender-pearl-behavior: false
light-queue-size: 20
max-leash-distance: 10.0 max-leash-distance: 10.0
redstone-implementation: ALTERNATE_CURRENT redstone-implementation: ALTERNATE_CURRENT
shield-blocking-delay: 5 shield-blocking-delay: 5

View file

@ -5,7 +5,7 @@
############################################################ ############################################################
# This is the config file for EssentialsX. # This is the config file for EssentialsX.
# This config was generated for version 2.21.0-dev+151-f2af952. # This config was generated for version 2.21.1-dev+4-50b696b.
# If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI. # If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
# If you receive an error when Essentials loads, ensure that: # If you receive an error when Essentials loads, ensure that:
@ -33,6 +33,11 @@ nickname-prefix: ''
# The maximum length allowed in nicknames. The nickname prefix is not included in this. # The maximum length allowed in nicknames. The nickname prefix is not included in this.
max-nick-length: 99999 max-nick-length: 99999
# The regex pattern used to determine if a requested nickname should be allowed for use.
# If the a requested nickname does not matched this pattern, the nickname will be rejected.
# Users with essentials.nick.allowunsafe will be able to bypass this check.
allowed-nicks-regex: '^[a-zA-Z_0-9§]+$'
# A list of phrases that cannot be used in nicknames. You can include regular expressions here. # A list of phrases that cannot be used in nicknames. You can include regular expressions here.
# Users with essentials.nick.blacklist.bypass will be able to bypass this filter. # Users with essentials.nick.blacklist.bypass will be able to bypass this filter.
nick-blacklist: nick-blacklist:
@ -224,6 +229,11 @@ socialspy-uses-displaynames: false
# This will disable flight if the player does not have essentials.fly. # This will disable flight if the player does not have essentials.fly.
world-change-fly-reset: true world-change-fly-reset: true
# Starting in 1.17, Minecraft no longer preserves the abilities of a player when they change worlds.
# Setting this to true will make EssentialsX preserve if users flying when they change worlds.
# This will only work if the player has the essentials.fly permission.
world-change-preserve-flying: true
# When a player changes world, should we reset their speed according to their permissions? # When a player changes world, should we reset their speed according to their permissions?
# This resets the player's speed to the default if they don't have essentials.speed. # This resets the player's speed to the default if they don't have essentials.speed.
# If the player doesn't have essentials.speed.bypass, this resets their speed to the maximum specified above. # If the player doesn't have essentials.speed.bypass, this resets their speed to the maximum specified above.

View file

@ -2,7 +2,7 @@
# Ensure you look through all these options # Ensure you look through all these options
# If you need help: # If you need help:
# Discord - https://viaversion.com/discord # Discord - https://viaversion.com/discord
# Docs - https://docs.viaversion.com/display/VIAVERSION/Configuration # Docs - https://docs.viaversion.com
# #
#----------------------------------------------------------# #----------------------------------------------------------#
# GLOBAL OPTIONS # # GLOBAL OPTIONS #

View file

@ -15,14 +15,10 @@ commands:
log: true log: true
tab-complete: 0 tab-complete: 0
send-namespaced: true send-namespaced: true
spam-exclusions: spam-exclusions: []
- /skill
silent-commandblock-console: true silent-commandblock-console: true
replace-commands: replace-commands: []
- setblock enable-spam-exclusions: false
- summon
- testforblock
- tellraw
messages: messages:
whitelist: The server is temporarily down for maintenance. Please try again later! whitelist: The server is temporarily down for maintenance. Please try again later!
unknown-command: Unknown command. Type "/help" for help. unknown-command: Unknown command. Type "/help" for help.