
Same Place Structures
This useful mod is designed specifically for Minecraft modpack developers and custom map creators. Its main function is to place specific structures in strictly fixed positions across all generated worlds and dimensions.
Core Working Principle
The modification configures structure generation so that structures appear in exactly specified chunks every time a new world is created. The only requirement is that the corresponding biome at these coordinates must be suitable for the chosen structure.
Configuration Example
Use the following structure "structure_set" schema for configuration:
{
"structures": [
{
"structure": "minecraft:village_plains",
"weight": 1
}
],
"placement": {
"type": "sps:static",
"x": [2,10],
"z": [2,10],
"salt": 0
}
}
The "x" and "z" arrays indicate the chunk coordinates where the structure should appear. A special feature of the system allows you to set identical structures in multiple locations simultaneously if required for your project.