No Elytra Mod is a lightweight server-side Fabric mod that gives you full control over elytra flight using a flexible rule-based system.
The mod does not remove or unequip elytra and does not affect Creative mode.
It simply enforces server rules and prevents flight when conditions are not met.
“You can wear it. You just can’t fly.”
minecraft:overworld, minecraft:the_end, modded worlds)The mod uses a rule system:
No teleportation, no damage, no hacks — just clean control.
.jar into the mods folder A config file will be generated:
config/noelytra.json
Disable flight in a dimension:
/noelytra dimension deny minecraft:the_end
Allow flight:
/noelytra dimension allow minecraft:the_end
List blocked dimensions:
/noelytra dimension list
Disable flight in rain:
/noelytra weather deny rain
Disable flight in thunderstorms:
/noelytra weather deny thunder
Allow flight:
/noelytra weather allow rain
List blocked weather conditions:
/noelytra weather list
`
Tab-completion is supported.
{
"rules": {
"dimension": {
"blocked": [
"minecraft:the_end"
]
},
"weather": {
"blocked": [
"RAIN",
"THUNDER"
]
}
}
}
`
{
"blockedDimensions": [
"minecraft:the_end"
],
"blockedWeather": [
"RAIN",
"THUNDER"
]
}
All changes made via commands are saved automatically.
The mod uses Java's ServiceLoader to automatically load rules.
This makes it easy to add new restriction types such as:
This project is licensed under the MIT License.