PieKing1215 / InvMove

Minecraft Forge/Fabric/Quilt mod that adds the ability to walk around while in inventories
GNU Lesser General Public License v3.0
23 stars 7 forks source link

Glitchy compatibility with Crawl #18

Open PieKing1215 opened 1 year ago

PieKing1215 commented 1 year ago

https://www.curseforge.com/minecraft/mc-mods/crawl While an inventory is open, you crawl at normal walking speed and if you have crawl set to toggle it toggles every tick when the key is pressed.

PieKing1215 commented 1 year ago

66e9e42 fixes the toggling every tick. The speed problem is fixed in Crawl's 1.19 version, and is otherwise caused by them using a mixin into KeyboardInput::tick which this mod completely bypasses (for now).

(Also note that GoProne doesn't use a ToggleKeyMapping for their toggle key, so the toggle problem was not present. As a result, their manual toggling code doesn't work inside inventories though, which will probably be something for InvMoveCompats to fix)