Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix double clicking to stack items #921

Merged
merged 1 commit into from
Oct 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ public void onPlayerClickInventory(final InventoryClickEvent event) {
// Ignored actions
switch (event.getAction()) {
case CLONE_STACK: // Out of scope
case COLLECT_TO_CURSOR: // Handled by InventoryClickedEvent
case NOTHING:
case UNKNOWN:
return;
Expand Down Expand Up @@ -484,9 +483,7 @@ public void collectToCursor(InventoryClickEvent event) {
public void onPlayerInventoryClick(InventoryClickEvent event) {
// Control-double-click on a stack, all similar stacks are moved to the cursor, up to the max
// stack size
// We cancel all of these and redo them ourselves. We have to do it from a InventoryClickedEvent
// because
// we can't make the necessary changes from inside a InventoryClickEvent.
// We cancel all of these and redo them ourselves.
if (this.collectToCursor) {
this.collectToCursor = false;

Expand Down