Skip to content

Commit afe2d21

Browse files
committed
Fix default keybinds
1 parent 176a844 commit afe2d21

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/ca/atlasengine/ClientMod.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void onInitializeClient() {
6363
Keybinds.destroy = KeyBindingHelper.registerKeyBinding(new KeyBinding(
6464
"key.atlasengine.destroy", // The translation key of the keybinding's name
6565
InputUtil.Type.KEYSYM, // The type of the keybinding, KEYSYM for keyboard, MOUSE for mouse.
66-
GLFW.GLFW_KEY_X, // The keycode of the key
66+
GLFW.GLFW_KEY_DELETE, // The keycode of the key
6767
"category.atlasengine.animation" // The translation key of the keybinding's category.
6868
));
6969

@@ -77,7 +77,7 @@ public void onInitializeClient() {
7777
Keybinds.remove = KeyBindingHelper.registerKeyBinding(new KeyBinding(
7878
"key.atlasengine.remove", // The translation key of the keybinding's name
7979
InputUtil.Type.KEYSYM, // The type of the keybinding, KEYSYM for keyboard, MOUSE for mouse.
80-
173, // The keycode of the key
80+
GLFW.GLFW_KEY_MINUS, // The keycode of the key
8181
"category.atlasengine.animation" // The translation key of the keybinding's category.
8282
));
8383

0 commit comments

Comments
 (0)