Allow modification of biome size through Paper's bootstrapped plugin datapacks#87
Merged
Extremelyd1 merged 6 commits intomasterfrom Apr 19, 2025
Merged
Allow modification of biome size through Paper's bootstrapped plugin datapacks#87Extremelyd1 merged 6 commits intomasterfrom
Extremelyd1 merged 6 commits intomasterfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
To facilitate the modification of biome size, a datapack is used that modifies perlin noise parameters in the world generation. These modification are done through the following files:
temperature.jsonvegetation.jsonerosion.jsoncontinentalness.jsonIn order to have the datapack load on server start,even for newly generated worlds, the plugin now uses the Paper plugin system. This means that it will only work on Paper servers, but is able to make use of the bootstrapper to load plugin
datapacks on server startup.
Commands have been reworked slightly to adhere to the command system that Paper plugins use. For now, the commands are all still
BasicCommandimplementations that more or less follow the old Bukkit command system. In the future these should be reworked again for the Brigadier command system.While reworking a few of the systems, the chunk generation for chunks outside of the world border has also been properly fixed. This means that chunks completely outside of the world border on games that use the border will now generate completely filled with barrier blocks for performance.