Skip to content

Commit 089403f

Browse files
committed
Change default take everything key to space
having it as a key thats accessible to all devices is honestly better imo its also easier to press, your thumb is probably near space when youre playing the game, to middle click you need to move your finger to press it a little
1 parent 82355ae commit 089403f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/kyrptonaught/lemclienthelper/TakeEverything/TakeEverythingMod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class TakeEverythingMod {
1010
public static KeyBinding takeEverythingKey;
1111

1212
public static void onInitialize() {
13-
takeEverythingKey = KeyBindingHelper.registerKeyBinding(new KeyBinding(LEMClientHelperMod.MOD_ID + ".key.takeeverything", InputUtil.Type.MOUSE, GLFW.GLFW_MOUSE_BUTTON_3, "key.category." + LEMClientHelperMod.MOD_ID));
13+
takeEverythingKey = KeyBindingHelper.registerKeyBinding(new KeyBinding(LEMClientHelperMod.MOD_ID + ".key.takeeverything", InputUtil.Type.KEYSYM, GLFW.GLFW_KEY_SPACE, "key.category." + LEMClientHelperMod.MOD_ID));
1414
}
1515

1616
public static void registerControllerKeys() {

0 commit comments

Comments
 (0)