{"id":100629,"date":"2026-06-05T21:51:44","date_gmt":"2026-06-05T18:51:44","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/"},"modified":"2026-06-05T21:51:44","modified_gmt":"2026-06-05T18:51:44","slug":"mes-moogs-end-structures-config-pack","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/","title":{"rendered":"MES &#8211; Moog&#8217;s End Structures (config pack)"},"content":{"rendered":"<p>![banner](https:\/\/www.bisecthosting.com\/images\/CF\/MES\/BH_ME_HEADER.webp)<\/p>\n<p>***<\/p>\n<p>  ![Support me on Ko-fi](https:\/\/ko-fi.com\/D1D8LKA5N)<br \/>\n  ![Discord](https:\/\/discord.com\/invite\/S5nffJbuvA)<br \/>\n  ![My projects](https:\/\/www.curseforge.com\/members\/finndog_123\/projects)<\/p>\n<p>***<\/p>\n<p>![Overview](https:\/\/www.bisecthosting.com\/images\/CF\/MES\/BH_ME_BANNER1.webp)<\/p>\n<p>***<\/p>\n<p>## **THIS DATAPACK IS NO LONGER UPDATED.**<br \/>\nofc, feel free to create your own config datapacks from our git repos or use a config mod like Cristel Lib<\/p>\n<div style=\"background-color: #3e0e49; color: white; text-align: center; padding: 10px;\">\n   Feedback\n<\/div>\n<p>Please comment any ideas you may have to improve this mod. Any and all feedback is greatly appreciated \ud83d\ude42<\/p>\n<p>Additionally, if you make any configs you think other people would enjoy, send it to me on Discord and I&#8217;ll be happy to upload it here!<\/p>\n<div style=\"background-color: #3e0e49; color: white; text-align: center; padding: 10px;\">\n   NeoForge and Fabric\n<\/div>\n<p>All datapack versions work on Forge, NeoForge **and** Fabric.<\/p>\n<div style=\"background-color: #3e0e49; color: white; text-align: center; padding: 10px;\">\n   How To Use\n<\/div>\n<p>This is a template datapack for my structure mod, Moogs End Structures. Look at the info below to see how to use it.<\/p>\n<p>This guide will help you customize the Moog&#8217;s End Structures datapack by explaining how to:<br \/>\n1. Remove unwanted structures<br \/>\n2. Change the rarity of structures<br \/>\n3. Modify biome tags<\/p>\n<p>## 1. Removing Unwanted Structures<\/p>\n<p>To remove unwanted structures, you need to modify the relevant structure files in the `data\/mes\/worldgen\/structure_set` directory and remove the section spawning the structure.<\/p>\n<p>For example, to remove the &#8220;astral_hideaway&#8221; structure:<br \/>\n&#8211; Open the file `data\/mes\/worldgen\/structure_set\/other_decoration\/astral_hideaway.json`.<br \/>\n&#8211; Modify the JSON to remove the structure spawning section, so it looks like this:<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;structures&#8221;:[<\/p>\n<p>  ],<br \/>\n  &#8220;placement&#8221;: {<br \/>\n    &#8220;type&#8221;: &#8220;mes:advanced_random_spread&#8221;,<br \/>\n    &#8220;salt&#8221;: 136568741,<br \/>\n    &#8220;spacing&#8221;: 25,<br \/>\n    &#8220;separation&#8221;: 15,<br \/>\n    &#8220;min_distance_from_world_origin&#8221;: 1000<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>## 2. Changing the Rarity of Structures<\/p>\n<p>To change the rarity of structures, modify the `spacing` and `separation` attributes in the relevant structure_set files in the `data\/mes\/worldgen\/structure_set` directory.<\/p>\n<p>For example, to change the rarity of the &#8220;astral_hideaway&#8221; structure:<br \/>\n&#8211; Open the file `data\/mes\/worldgen\/structure_set\/other_decoration\/astral_hideaway.json`.<br \/>\n&#8211; Modify the `spacing` and `separation` attributes to adjust its rarity.<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;structures&#8221;: [<br \/>\n    {<br \/>\n      &#8220;structure&#8221;: &#8220;mes:astral_hideaway&#8221;,<br \/>\n      &#8220;weight&#8221;: 1<br \/>\n    }<br \/>\n  ],<br \/>\n  &#8220;placement&#8221;: {<br \/>\n    &#8220;type&#8221;: &#8220;mes:advanced_random_spread&#8221;,<br \/>\n    &#8220;salt&#8221;: 136568741,<br \/>\n    &#8220;spacing&#8221;: 100, \/\/ Increase this value to make the structure less common<br \/>\n    &#8220;separation&#8221;: 80 \/\/ Ensure this value is smaller than spacing<br \/>\n    &#8220;min_distance_from_world_origin&#8221;: 1000<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>Explanation of attributes:<br \/>\n&#8211; `spacing`: Average distance between two neighboring generation attempts. Value between 0 and 4096 (inclusive).<br \/>\n&#8211; `separation`: Minimum distance (in chunks) between two neighboring attempts. Value between 0 and 4096 (inclusive). Has to be strictly smaller than `spacing`. The maximum distance of two neighboring generation attempts is `2*spacing &#8211; separation`.<\/p>\n<p>## 3. Modifying Biome Tags<\/p>\n<p>To modify biome tags, edit the relevant JSON files in the `data\/mes\/tags\/worldgen\/biome\/has_structure` directory.<\/p>\n<p>For example, to add or remove biomes from the &#8220;snowy_biomes&#8221; tag:<br \/>\n&#8211; Open the file `data\/mes\/tags\/worldgen\/biome\/has_structure\/end_biomes.json`.<br \/>\n&#8211; Add or remove biomes from the `values` array.<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;replace&#8221;: false,<br \/>\n  &#8220;values&#8221;: [<br \/>\n    \/\/add or remove biomes here<br \/>\n    &#8220;#minecraft:is_end&#8221;,<br \/>\n    {<br \/>\n      &#8220;id&#8221;: &#8220;#forge:is_end&#8221;,<br \/>\n      &#8220;required&#8221;: false<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;id&#8221;: &#8220;#c:in_the_end&#8221;,<br \/>\n      &#8220;required&#8221;: false<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;id&#8221;: &#8220;#c:end_islands&#8221;,<br \/>\n      &#8220;required&#8221;: false<br \/>\n    }<br \/>\n  ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>When modifying biome tags, note the following:<br \/>\n&#8211; Biome IDs should be written as `&#8221;minecraft:snowy_taiga&#8221;`.<br \/>\n&#8211; Biome tags should be written with a hashtag in front, such as `&#8221;#minecraft:is_jungle&#8221;`.<br \/>\n&#8211; When adding modded biomes, they must be written with `&#8221;required&#8221;: false`, like this:<br \/>\n  &#8220;`json<br \/>\n  {<br \/>\n    &#8220;id&#8221;: &#8220;#biomesoplenty:is_savanna&#8221;,<br \/>\n    &#8220;required&#8221;: false<br \/>\n  }<br \/>\n  &#8220;`<br \/>\n&#8211; Make sure to set `&#8221;replace&#8221;: true` to ensure the changes take effect.<\/p>\n<p>***<\/p>\n<p>![Banner](https:\/\/www.bisecthosting.com\/images\/CF\/MES\/BH_ME_BANNER3.webp)<\/p>\n<p>The best and fastest way to get help is to join our Discord server.<\/p>\n<p>![Discord](https:\/\/discord.gg\/S5nffJbuvA)<\/p>\n<p>***<\/p>\n<p>![BHsponser](https:\/\/bisecthosting.com\/moogsmods)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A customisable datapack for the MES mod, allowing for easy control over the mod<\/p>\n","protected":false},"featured_media":100630,"template":"","meta":{"_minecraft_slug":"mes-moogs-end-structures-(config-pack)","_minecraft_project_id":"q9G7lPPp","_minecraft_author":"FinnSetchell","_minecraft_license":"LGPL-3.0-only","_minecraft_downloads":1377,"_minecraft_follows":13,"_minecraft_client_side":"optional","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"mes-moogs-end-structures-(config-pack).zip","_minecraft_size_bytes":4031822,"_minecraft_version_count":4,"_minecraft_updated_at":"2026-05-16T04:15:27.033339Z","_minecraft_date_created":"2025-02-19T05:21:20.980628Z","_minecraft_date_modified":"2025-02-16T17:04:01.553638Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/mes-moogs-end-structures-(config-pack)","_minecraft_icon_attachment_id":100630,"_minecraft_imported_at":"2026-06-05T18:51:44+00:00","_minecraft_import_hash":"1c4f34e521c757c91d6a2f603153e525","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[84],"mod_loader":[86],"minecraft_version":[59,36,60,93,94,101,102,62,37,73,74,38],"class_list":["post-100629","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-datapack","mod_loader-datapack","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>MES - Moog&#039;s End Structures (config pack) - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MES - Moog&#039;s End Structures (config pack) - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A customisable datapack for the MES mod, allowing for easy control over the mod\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mes-moogs-end-structures-config-pack\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mes-moogs-end-structures-config-pack\\\/\",\"name\":\"MES - Moog's End Structures (config pack) - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mes-moogs-end-structures-config-pack\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mes-moogs-end-structures-config-pack\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/mes-moogs-end-structures-config-pack-icon-52a8530b4ceaa88b4527866c45ae9c2aec49cee7_96.webp\",\"datePublished\":\"2026-06-05T18:51:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mes-moogs-end-structures-config-pack\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mes-moogs-end-structures-config-pack\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mes-moogs-end-structures-config-pack\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/mes-moogs-end-structures-config-pack-icon-52a8530b4ceaa88b4527866c45ae9c2aec49cee7_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/mes-moogs-end-structures-config-pack-icon-52a8530b4ceaa88b4527866c45ae9c2aec49cee7_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mes-moogs-end-structures-config-pack\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"MES &#8211; Moog&#8217;s End Structures (config pack)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MES - Moog's End Structures (config pack) - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/","og_locale":"en_US","og_type":"article","og_title":"MES - Moog's End Structures (config pack) - Minecraft","og_description":"A customisable datapack for the MES mod, allowing for easy control over the mod","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/","name":"MES - Moog's End Structures (config pack) - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/mes-moogs-end-structures-config-pack-icon-52a8530b4ceaa88b4527866c45ae9c2aec49cee7_96.webp","datePublished":"2026-06-05T18:51:44+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/mes-moogs-end-structures-config-pack-icon-52a8530b4ceaa88b4527866c45ae9c2aec49cee7_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/mes-moogs-end-structures-config-pack-icon-52a8530b4ceaa88b4527866c45ae9c2aec49cee7_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/mes-moogs-end-structures-config-pack\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"MES &#8211; Moog&#8217;s End Structures (config pack)"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/100629","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/100630"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=100629"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=100629"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=100629"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=100629"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}