forked from PaperMC/Paper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRemovedConfigurations.java
More file actions
92 lines (86 loc) · 3.92 KB
/
RemovedConfigurations.java
File metadata and controls
92 lines (86 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package io.papermc.paper.configuration;
import org.spongepowered.configurate.NodePath;
import static org.spongepowered.configurate.NodePath.path;
interface RemovedConfigurations {
NodePath[] REMOVED_WORLD_PATHS = {
path("falling-blocks-collide-with-signs"),
path("fast-drain"),
path("lava-flow-speed"),
path("load-chunks"),
path("misc", "boats-drop-boats"),
path("player-exhaustion"),
path("remove-unloaded"),
path("tick-next-tick-list-cap"),
path("tick-next-tick-list-cap-ignores-redstone"),
path("elytra-hit-wall-damage"),
path("queue-light-updates"),
path("save-queue-limit-for-auto-save"),
path("max-chunk-sends-per-tick"),
path("max-chunk-gens-per-tick"),
path("fire-physics-event-for-redstone"),
path("fix-zero-tick-instant-grow-farms"),
path("bed-search-radius"),
path("lightning-strike-distance-limit"),
path("fix-wither-targeting-bug"),
path("remove-corrupt-tile-entities"),
path("allow-undead-horse-leashing"),
path("reset-arrow-despawn-timer-on-fall"),
path("seed-based-feature-search"),
path("seed-based-feature-search-loads-chunks"),
path("viewdistances", "no-tick-view-distance"),
path("seed-based-feature-search"), // unneeded as of 1.18
path("seed-based-feature-search-loads-chunks"), // unneeded as of 1.18
path("reset-arrow-despawn-timer-on-fall"),
path("squid-spawn-height"),
path("viewdistances"),
path("use-alternate-fallingblock-onGround-detection"),
path("skip-entity-ticking-in-chunks-scheduled-for-unload"),
path("tracker-update-distance"),
path("allow-block-location-tab-completion"),
path("cache-chunk-maps"),
path("disable-mood-sounds"),
path("fix-cannons"),
path("player-blocking-damage-multiplier"),
path("remove-invalid-mob-spawner-tile-entities"),
path("use-hopper-check"),
path("use-async-lighting"),
path("tnt-explosion-volume"),
path("entities", "spawning", "despawn-ranges", "soft"),
path("entities", "spawning", "despawn-ranges", "hard"),
path("fixes", "fix-curing-zombie-villager-discount-exploit"),
path("entities", "mob-effects", "undead-immune-to-certain-effects"),
path("entities", "entities-target-with-follow-range"),
path("environment", "disable-teleportation-suffocation-check"),
path("misc", "light-queue-size"),
path("spawn", "keep-spawn-loaded"),
path("spawn", "keep-spawn-loaded-range"),
path("misc", "shield-blocking-delay")
};
NodePath[] REMOVED_GLOBAL_PATHS = {
path("data-value-allowed-items"),
path("effect-modifiers"),
path("stackable-buckets"),
path("async-chunks"),
path("queue-light-updates-max-loss"),
path("sleep-between-chunk-saves"),
path("remove-invalid-statistics"),
path("min-chunk-load-threads"),
path("use-versioned-world"),
path("save-player-data"), // to spigot (converted)
path("log-named-entity-deaths"), // default in vanilla
path("chunk-tasks-per-tick"), // removed in tuinity merge
path("item-validation", "loc-name"),
path("commandErrorMessage"),
path("baby-zombie-movement-speed"),
path("limit-player-interactions"),
path("warnWhenSettingExcessiveVelocity"),
path("logging", "use-rgb-for-named-text-colors"),
path("unsupported-settings", "allow-grindstone-overstacking"),
path("unsupported-settings", "allow-tripwire-disarming-exploits"),
path("commands", "fix-target-selector-tag-completion"),
path("misc", "fix-entity-position-desync"),
path("chunk-system", "gen-parallelism"),
path("logging"), // server is no longer obfuscated since 26.1
path("unsupported-settings", "compression-format"),
};
}