Compatibility
Minecraft: Java Edition
1.20.1–1.20.6
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed MIT
Published 2 months ago
Updated 2 months ago
Welcome to SmartElytra
This mod is dedicated to preventing players from accidentally triggering the elytra as much as possible.
Detection Logic
The mod uses a fixed logic to guess whether the player intends to use the elytra, thereby disabling the elytra when the player does not want to use it.
The detection logic is as follows:
- Check if the player is holding fireworks. If yes, allow the use of the elytra; otherwise, continue to the next step.
- Check if the player is not running and the block under their feet is not air. If yes, it means the player's feet are in a block or fluid, and the elytra is disabled; otherwise, continue to the next step.
- Check if the absolute value of the player's vertical speed is less than 0.25 and the time since the last jump is less than 20 ticks. If yes, it means the player pressed the spacebar near the peak of their jump, possibly intending to glide into crawl mode using the elytra, and the elytra is allowed; otherwise, continue to the next step.
- Check if the player is not running and the block one space below their feet is a fluid or air. If yes, it means the player might be trying to enter crawl mode or use the elytra to jump out of the water, and the elytra is allowed; otherwise, continue to the next step.
- Check if there is enough space for flight in the five blocks ahead of the player. If yes, allow the use of the elytra; otherwise, disable the elytra.
欢迎使用 SmartElytra
本模组致力于尽可能地避免玩家误触鞘翅。
检测逻辑
模组通过固定的逻辑猜测玩家是否是主观地想要使用鞘翅,从而在玩家不想使用鞘翅时禁用鞘翅。
检测逻辑如下:
- 检查玩家是否手持烟花,如果是则允许使用鞘翅,否则继续向下
- 检查玩家是否不在奔跑且脚下不是空气方块,如果是说明玩家地脚在方块中或在流体中,此时禁用鞘翅,否则继续向下
- 检查玩家垂直方向速度的绝对值是否小于 0.25 且距离上一次跳跃的间隔小于 20 Tick,如果是说明玩家在跳跃最高点附近按下了空格,可能是想要通过鞘翅滑行进入爬行模式,此时允许使用鞘翅,否则继续向下
- 检查玩家是否不在奔跑且脚下间隔一个方块的位置是流体或空气,如果是说明玩家可能在尝试进入爬行或借助鞘翅越出水面,此时允许使用鞘翅,否则继续向下
- 检查玩家前方五格的空间是否允许飞行,如果是则允许使用鞘翅,否则禁用鞘翅