Chisels & Bits - For Fabric

Chisels & Bits - For Fabric

2M Downloads

Meaurement Measures cannot be resettet.

sayore opened this issue ยท 2 comments

commented

Meaurement Measures cannot be resettet.

The keybind even allows for SHIFT + Left Shift and other sheanigans, any combination of Shift of Button wont work.

For any bug reports please provide the following details as well,

  • MC Version: 1.18.2
  • C&B Version: 1.2.114
  • Do You have Optifine: No
commented

I'm having this as well!!! I would like to mention this is on the fabric side of things for me.

commented

IKeyBindingManager.getInstance().register(resetMeasuringTapeKeyBinding =
IKeyBindingManager.getInstance().createNew("mod.chiselsandbits.keys.key.measuring-tape.reset",
HoldsSpecificItemInHandKeyConflictContext.MEASURING_TAPE,
KeyModifier.SHIFT,
InputConstants.Type.MOUSE,
1,
"mod.chiselsandbits.keys.category"));

This is most likely the issue, you demand a SHIFT + Key + Mouse click instead of just the keypress, remove Mouse and Shift from this register and it should work.

(I actually forked and fixed it and could succesfully make a working build, maybe i will PR it later)
EDIT: Here is the Hotfix PR
#1014