Skip to content

Commit

Permalink
Document vanilla breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Leguan16 committed Mar 24, 2024
1 parent b773a5c commit 5a5d6e8
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
47 changes: 47 additions & 0 deletions config-specs/paper/vanilla/paper-world-defaults.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
should-remove-dragon:
default: "true"
maps:
item-frame-cursor-limit:
default: "2147483647"
description: >-
Note that a high number can eventually cause clients to lag.
The actual default value would be infinity. 2147483647 is the closest to infinity.
fixes:
disable-unloaded-chunk-enderpearl-exploit:
default: "false"
entities:
spawning:
duplicate-uuid:
mode:
default: "<empty>"
description: >-
[Why this setting exists](https://github.com/PaperMC/Paper/blob/b6001403e9703cadaa6e8c8558e732b91c3c6d6e/patches/server/0310-Duplicate-UUID-Resolve-Option.patch#L6-L8)
[Documentation](https://docs.papermc.io/paper/reference/world-configuration#entities_spawning_duplicate_uuid_mode)
count-all-mobs-for-spawning:
default: "true"
behavior:
phantoms-only-attack-insomniacs:
default: "false"
phantoms-do-not-spawn-on-creative-players:
default: "false"
misc:
light-queue-size:
default: "5"
collisions:
allow-player-cramming-damage:
default: "true"
max-entity-collisions:
default: "2147483647"
description: The actual default value would be infinity. 2147483647 is the closest to infinity.
scoreboards:
allow-non-player-entities-on-scoreboards:
default: "true"
use-vanilla-world-scoreboard-name-coloring:
default: "true"
unsupported-settings:
fix-invulnerable-end-crystal-exploit:
default: "false"
chunks:
delay-chunk-unloads-by:
default: "0"
1 change: 1 addition & 0 deletions config/sidebar.paper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const paper: SidebarsConfig = {
"admin/how-to/update",
"admin/how-to/aikars-flags",
"admin/how-to/anti-xray",
"admin/how-to/get-to-vanilla",
],
},
{
Expand Down
12 changes: 12 additions & 0 deletions docs/paper/admin/how-to/get-to-vanilla.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
slug: /vanilla
description: This page lists all changes that result in a different experience than vanilla.
---

# Hot to get a vanilla experience

import React from 'react';
import Config from '@site/src/components/Config';
import VanillaWorldDefaults from '!!raw-loader!@site/config-specs/paper/vanilla/paper-world-defaults.yml'

<Config data={VanillaWorldDefaults}/>

0 comments on commit 5a5d6e8

Please sign in to comment.