Endless is a Minecraft mod that removes or customizes the build height limits of the game, allowing you to build beyond the vanilla restrictions. CurseForge: https://www.curseforge.com/minecraft/mc-mods/nstut-endless
- Customizable Build Height: Modify the minimum and maximum build heights in Minecraft through a simple configuration file
- Remove Height Limits: Optionally remove build height restrictions entirely, allowing building at extreme heights
- Cross-Platform: Compatible with both Forge and Fabric mod loaders
After launching Minecraft with the mod for the first time, a configuration file will be generated at config/endless.json
. You can edit this file to customize the mod behavior:
{
"buildHeight": {
"minBuildHeight": -64,
"maxBuildHeight": 320,
"removeBuildHeightLimit": false
}
}
Options:
minBuildHeight
: The minimum Y-level at which blocks can be placed (default: -64)maxBuildHeight
: The maximum Y-level at which blocks can be placed (default: 320)removeBuildHeightLimit
: Set totrue
to remove build height limits entirely (default: false)
common/
: Common code shared between all mod loadersfabric/
: Fabric-specific implementationforge/
: Forge-specific implementation
- Clone the repository
- Run
./gradlew build
to build all mod versions - Find the built JARs in:
fabric/build/libs/
forge/build/libs/
All Rights Reserved
- NsTut