Controllable (Fabric) [Archived]

Controllable (Fabric) [Archived]

1M Downloads

Sneaking with Controller is Slower than Keyboard

AlexHJC opened this issue ยท 1 comments

commented

Description:

When using a controller to sneak with the Controllable mod, the player moves at 0.09x normal walking speed, compared to 0.3x walking speed when sneaking with keyboard controls.

Minecraft Version: 1.21.4
Controllable Version: 0.23.2
Forge/Fabric Version: Fabric - Loader version 0.16.10
Controller Model: wireless xbox controller

Steps to Reproduce:

Launch Minecraft with the Controllable mod.
Connect a controller and ensure movement is working.
Start sneaking using the controller.
Observe that the movement speed is much slower than when sneaking with a keyboard.

Expected Behavior:

Sneaking with a controller should match the speed of keyboard sneaking (approximately 30% of normal movement speed).
Observed Behavior:
Sneaking speed is 9% of normal movement speed when using a controller, making movement while sneaking too slow.
This issue does not occur when sneaking with a keyboard.

Potential Cause (Code Analysis):

After reviewing the source code, the issue likely comes from InputHandler.java, where there is logic to reduce movement speed if localPlayer.isMovingSlowly() is true. This may be redundant as Minecraft handles reducing movement speed while sneaking on its own:

float sneakBonus = localPlayer.isMovingSlowly() ? sneakSpeed : 1.0F;
...
input.forwardImpulse *= sneakBonus;
input.leftImpulse *= sneakBonus;
commented

Fixed in 0cee9c0