Skip to content

Commit

Permalink
Change to space + click
Browse files Browse the repository at this point in the history
  • Loading branch information
PiTheGuy committed Aug 21, 2024
1 parent 5eeb868 commit d00c9dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/appeng/client/gui/AEBaseScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ && getEmptyingAction(slot, menu.getCarried()) != null) {
InventoryAction action;
if (hasShiftDown()) {
action = InventoryAction.CRAFT_SHIFT;
} else if (hasAltDown()) {
} else if (InputConstants.isKeyDown(Minecraft.getInstance().getWindow().getWindow(), GLFW.GLFW_KEY_SPACE)) {
action = InventoryAction.CRAFT_ALL;
} else {
// Craft stack on right-click, craft single on left-click
Expand Down

0 comments on commit d00c9dc

Please sign in to comment.