Description
Wastify Returns
A Minecraft mod created by McJty https://github.com/McJtyMods/Wastify, updated here for Neoforge under MIT license.
Overview
Wastify Returns allows you to control which bomes will appear in a world. Swap one or several biomes with another to limit or consolidate biome diversity.
Configuration
Wastify is configured entirely through datapacks
Creating a Basic Datapack
- Create a datapack folder structure:
saves/[world_name]/datapacks/wastify_config/
├── pack.mcmeta
└── data/
└── minecraft/
└── dimension/
└── overworld.json
- Create
pack.mcmeta:
{
"pack": {
"pack_format": 48,
"description": "My Wastify Configuration"
}
}
- Create
overworld.jsonwith your biome mappings (see examples below).
Dimension Configuration Format
{
"type": "minecraft:overworld",
"generator": {
"biome_source": {
"type": "wastify:wastify_biome_source",
"dimension": "minecraft:overworld",
"adapt_biome_source": {
"type": "minecraft:multi_noise",
"preset": "minecraft:overworld"
},
"default": "minecraft:desert",
"sphere_default": "minecraft:jungle",
"mapping": [
"minecraft:forest=minecraft:wooded_badlands",
"minecraft:plains=minecraft:desert",
"minecraft:jungle=minecraft:wooded_badlands"
],
"sphere_mapping": [
"minecraft:forest=minecraft:jungle"
]
},
"settings": "minecraft:overworld",
"type": "minecraft:noise"
}
}
General FAQ:
Who do I contact for issues with this mod:
Contact me via comment, message, or github issue: https://github.com/morelandjo/Wastify-Returns
Do not contact the original author for help with this version
Can you update the forge mod, backport, or create the mod with a different framework (fabric etc)
I'm only focused on Neoforge 1.21.1 and up for all current and future mods. I'm not interested in Forge or other frameworks.
Can you update this mod to Neoforge 1.xx (some future version)
Yes probably, let me know what versions you're interested in
Would you consider updating other old mods to Neoforge?
Yes, as long as they have a github and an open license I will consider it. Feel free to private message me with requests.


