13
0
geforkt von Mirrors/Paper

remove more unused config options

Dieser Commit ist enthalten in:
Jake Potrebic 2022-06-09 15:15:01 -07:00
Ursprung 288cf1e073
Commit 35d5998b02

Datei anzeigen

@ -1250,7 +1250,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ path("lightning-strike-distance-limit"), + path("lightning-strike-distance-limit"),
+ path("fix-wither-targeting-bug"), + path("fix-wither-targeting-bug"),
+ path("remove-corrupt-tile-entities"), + path("remove-corrupt-tile-entities"),
+ path("allow-leashing-undead-horse"), + path("allow-undead-horse-leashing"),
+ path("reset-arrow-despawn-timer-on-fall"), + path("reset-arrow-despawn-timer-on-fall"),
+ path("seed-based-feature-search"), + path("seed-based-feature-search"),
+ path("seed-based-feature-search-loads-chunks"), + path("seed-based-feature-search-loads-chunks"),
@ -1260,6 +1260,18 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ path("reset-arrow-despawn-timer-on-fall"), + path("reset-arrow-despawn-timer-on-fall"),
+ path("squid-spawn-height"), + path("squid-spawn-height"),
+ path("viewdistances"), + 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"),
+ }; + };
+ +
+ NodePath[] REMOVED_GLOBAL_PATHS = { + NodePath[] REMOVED_GLOBAL_PATHS = {
@ -1271,7 +1283,11 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ path("save-player-data"), // to spigot (converted) + path("save-player-data"), // to spigot (converted)
+ path("log-named-entity-deaths"), // default in vanilla + path("log-named-entity-deaths"), // default in vanilla
+ path("chunk-tasks-per-tick"), // removed in tuinity merge + path("chunk-tasks-per-tick"), // removed in tuinity merge
+ path("item-validation", "loc-name") + path("item-validation", "loc-name"),
+ path("commandErrorMessage"),
+ path("baby-zombie-movement-speed"),
+ path("limit-player-interactions"),
+ path("warnWhenSettingExcessiveVelocity")
+ }; + };
+ +
+} +}
@ -3203,7 +3219,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ } + }
+ +
+ private static ConfigurationTransformation newFormatTransformation() { + private static ConfigurationTransformation newFormatTransformation() {
+ final ConfigurationTransformation.Builder builder = ConfigurationTransformation.builder(); + final ConfigurationTransformation.Builder builder = ConfigurationTransformation.builder()
+ .addAction(path("verbose"), TransformAction.remove()); // not needed
+ +
+ moveFromRoot(builder, "anti-xray", "anticheat"); + moveFromRoot(builder, "anti-xray", "anticheat");
+ +