Tiny client and server pack for daxe's community modrinth.com/project/daxe
at main 17 lines 1.1 kB view raw
1{ 2 // The version of the config file. Do not change this unless you know what you are doing. 3 "rconfig:version": 0, 4 /* 5 * Whether to use an alternative strategy to make structure layouts generate slightly even faster than 6 * the default optimization this mod has for template pool weights. This alternative strategy works by 7 * changing the list of pieces that structures collect from the template pool to not have duplicate entries. 8 * 9 * This will not break the structure generation, but it will make the structure layout different than 10 * if this config was off (breaking vanilla seed parity). The cost of speed may be worth it in large 11 * modpacks where many structure mods are using very high weight values in their template pools. 12 * 13 * Pros: Get a bit more performance from high weight Template Pool Structures. 14 * Cons: Loses parity with vanilla seeds on the layout of the structure. (Structure layout is not broken, just different) 15 */ 16 "deduplicateShuffledTemplatePoolElementList": true 17}