
Click Machine sneak not being detected
Electrolyte220 opened this issue ยท 2 comments
Mod loader
Forge
Minecraft version
1.19.2
Mod version
3.10.1
Modloader version
Forge 43.2.0
Modpack info
No response
If bug:
- Can you reproduce this issue with relevant mods only?
If bug: The latest.log file
No response
Issue description
Due how click machine sets up their fake player, the way Lychee detects the player shifting is not applicable.
All that's needed to fix this is a check for isShiftKeyDown(), as that's how click machine assigns sneaking to their fake player.
True, so instead you can have a check for either:
return ctx.getParam(LootContextParams.THIS_ENTITY).isCrouching() || ctx.getParam(LootContextParams.THIS_ENTITY).isShiftKeyDown() ? times : 0;
instead of just
return ctx.getParam(LootContextParams.THIS_ENTITY).isCrouching() ? times : 0;
and that seemed to fix it when I tested it.