All versions
1.0.5-26.1.2
Release
ElytraTweaks 1.0.5-26.1.22 weeks ago 13
Compatibility
Minecraft: Java Edition
26.1.2
Platform
NeoForge
Supported environments
Client and server
Changes
[1.0.5]
Changed
- The elytra no longer deploys from the vanilla jump/spacebar key. It now deploys only from the mod's dedicated deploy key (default: Left Alt). This prevents accidental deploys and fixes conflicts with movement mods that use the jump key, such as ParCool.
Fixed
- Stopping flight mid-air now takes a single press of the deploy key. Previously it could require two presses because the client and server fall-flying state drifted out of phase — deploy now syncs both sides via the fall-flying packet, so a single stop press always works.
How the spacebar block works
- Two layers, for modpack robustness:
- Proactive: the client-side
tryToStartFallFlyingis cancelled for any attempt that the mod's own deploy key did not initiate. - Reactive safety net: if the player ends up gliding without having asked to (via an unusual deploy path from another mod), the wings are folded client-side (no stop packet, so it never traps you in the crawling hitbox).
- Proactive: the client-side
Known limitation
- In very large modpacks, a mod may open the elytra through a path the proactive layer can't see (e.g. a server-side deploy synced back to the client). The reactive net still stops it, but because it acts a tick later you may see a brief one-frame "flicker" of the wings. Flight is never actually sustained.
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:GcNbMEwm:hJZWOLdb"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:GcNbMEwm:hJZWOLdb"
}

