diff options
author | Shane Freeder <[email protected]> | 2021-06-16 21:50:21 +0100 |
---|---|---|
committer | Shane Freeder <[email protected]> | 2021-06-16 21:50:21 +0100 |
commit | 903fa9a33fcaab03e67343d010558c738bcea84e (patch) | |
tree | c98912da4a5895490f1536e64519381f7bf27957 | |
parent | 2db85c553f0e1413612c1ea90bfae7f80d06f8dc (diff) | |
download | Paper-903fa9a33fcaab03e67343d010558c738bcea84e.tar.gz Paper-903fa9a33fcaab03e67343d010558c738bcea84e.zip |
Enable chunk load for feature search by default
generating the chunk allows vanilla to determine if the "potential"
structure location was actually put in place, as well as the exact
position of it, while the offset location was a minor inconvenience
for most game play, the fact that it would return potentials which
would fail does cause a good chunk of impact
-rw-r--r-- | Spigot-Server-Patches/0596-Seed-based-feature-search.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Spigot-Server-Patches/0596-Seed-based-feature-search.patch b/Spigot-Server-Patches/0596-Seed-based-feature-search.patch index 29bb86682d..1667f9c44e 100644 --- a/Spigot-Server-Patches/0596-Seed-based-feature-search.patch +++ b/Spigot-Server-Patches/0596-Seed-based-feature-search.patch @@ -21,7 +21,7 @@ changes but this should usually not happen. A config option to disable this completely is added though in case that should ever be necessary. diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java -index 424754a0183b071d20c86f0420cec784a8992e2b..97870622e41cca36d9c7493bfad796f35f3831f4 100644 +index 424754a0183b071d20c86f0420cec784a8992e2b..fdd7457848e8c7d491705f374c3608828cea02c3 100644 --- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java +++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java @@ -337,6 +337,14 @@ public class PaperWorldConfig { @@ -29,7 +29,7 @@ index 424754a0183b071d20c86f0420cec784a8992e2b..97870622e41cca36d9c7493bfad796f3 } + public boolean seedBasedFeatureSearch = true; -+ public boolean seedBasedFeatureSearchLoadsChunks = false; ++ public boolean seedBasedFeatureSearchLoadsChunks = true; + private void seedBasedFeatureSearch() { + seedBasedFeatureSearch = getBoolean("seed-based-feature-search", seedBasedFeatureSearch); + seedBasedFeatureSearchLoadsChunks = getBoolean("seed-based-feature-search-loads-chunks", seedBasedFeatureSearchLoadsChunks); |