1.0.0
Compatibility
Changes
no-elytra-mod
A Fabric mod for 26.1.* to disable the elytra in specific dimensions.
The mod makes sure that the elytra is inequippable in specific dimensions. When switching from an enabled dimension to disabled dimension the eltyra is returned to inventory. If inventory is full, elytra will be dropped in the new dimension.
Commands
/elytra allow <dimension>— Allow equipping Elytra in the specified dimension. Example:/elytra allow minecraft:the_endor/elytra allow the_end./elytra deny <dimension>— Deny equipping Elytra in the specified dimension. Example:/elytra deny minecraft:overworld./elytra list— Show the currently allowed dimensions for Elytra use.
Notes:
- Commands require operator-level permissions (server/operator access).
- Dimension identifiers may be provided with or without the
minecraft:namespace; e.g.the_endorminecraft:the_end. - Changes via commands persist to the mod config and are applied immediately to online players.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:MyY2FV4e:4hTbY7YW"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:MyY2FV4e:4hTbY7YW"
}

