Skip to content

Commit 04a1f02

Browse files
committed
chore: set disable-unloaded-chunk-enderpearl-exploit to false by default
1 parent cae9c7a commit 04a1f02

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

config-specs/paper/paper-world-defaults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ fishing-time-range:
784784
description: The minimum number of RNG ticks needed to catch a fish
785785
fixes:
786786
disable-unloaded-chunk-enderpearl-exploit:
787-
default: "true"
787+
default: "false"
788788
description: Prevent enderpearls from storing the thrower when in an unloaded chunk
789789
falling-block-height-nerf:
790790
default: disabled

config-specs/paper/vanilla/paper-world-defaults.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ entities:
3131
filtered-entity-tag-nbt-paths:
3232
default: "<expand>"
3333
description: "The default value is: []"
34-
fixes:
35-
disable-unloaded-chunk-enderpearl-exploit:
36-
default: "false"
3734
hopper:
3835
cooldown-when-full:
3936
default: "false"

docs/paper/dev/api/registries.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ final Enchantment enchantment = enchantmentRegistry.getOrThrow(TypedKey.create(
5454
// Same as above, but using generated create method
5555
// available for data-driven registries or "writable" ones
5656
// (those bound to a lifecycle event in RegistryEvents).
57-
final Enchantment enchantment = enchantmentRegistry.getOrThrow(EnchantmentKeys.create(Key.key("minecraft:sharpness")));
57+
final Enchantment enchantment = enchantmentRegistry.getOrThrow(
58+
EnchantmentKeys.create(Key.key("minecraft:sharpness"))
59+
);
5860

5961
// Same as above too, but using generated typed keys.
6062
// Only Vanilla entries have generated keys, for custom entries, the above method must be used.

0 commit comments

Comments
 (0)