https://github.com/uppermoon0/endless
A Minecraft mod that allows customization or removes build height limits, enabling construction beyond vanilla restrictions.
https://github.com/uppermoon0/endless
architectury-api fabric forge minecraft-mod
Last synced: about 1 month ago
JSON representation
A Minecraft mod that allows customization or removes build height limits, enabling construction beyond vanilla restrictions.
- Host: GitHub
- URL: https://github.com/uppermoon0/endless
- Owner: UpperMoon0
- License: other
- Created: 2025-04-26T13:36:35.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-29T08:20:09.000Z (about 1 year ago)
- Last Synced: 2025-04-29T09:31:03.951Z (about 1 year ago)
- Topics: architectury-api, fabric, forge, minecraft-mod
- Language: Java
- Homepage:
- Size: 4.66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Endless
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

## Features
- **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


## Configuration
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:
```json
{
"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 to `true` to remove build height limits entirely (default: false)
## Development
### Project Structure
- `common/`: Common code shared between all mod loaders
- `fabric/`: Fabric-specific implementation
- `forge/`: Forge-specific implementation
### Building from Source
1. Clone the repository
2. Run `./gradlew build` to build all mod versions
3. Find the built JARs in:
- `fabric/build/libs/`
- `forge/build/libs/`
## License
All Rights Reserved
## Author
- NsTut