File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
src/main/java/dev/felnull/bettergui Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ public void onRightClick(InventoryClickEvent e){}
2121 public void onLeftClick (InventoryClickEvent e ){}
2222 public void onMiddleClick (InventoryClickEvent e ){}
2323 public void onDoubleClick (InventoryClickEvent e ){}
24+ public void onShiftClick (InventoryClickEvent e ){}
2425 public void onShiftRightClick (InventoryClickEvent e ){}
2526 public void onShiftLeftClick (InventoryClickEvent e ){}
2627 public void onDropClick (InventoryClickEvent e ){}
Original file line number Diff line number Diff line change @@ -59,5 +59,5 @@ public void onOutsideWindowRightClick(InventoryClickEvent e){}
5959 public void onOutsideWindowLeftClick (InventoryClickEvent e ){}
6060
6161 public void onOutsideWindowClick (InventoryClickEvent e ){}
62-
62+
6363}
Original file line number Diff line number Diff line change @@ -37,9 +37,11 @@ public void onClick(InventoryClickEvent e){
3737 item .onDoubleClick (e );
3838 break ;
3939 case SHIFT_RIGHT :
40+ item .onShiftClick (e );
4041 item .onShiftRightClick (e );
4142 break ;
4243 case SHIFT_LEFT :
44+ item .onShiftClick (e );
4345 item .onShiftLeftClick (e );
4446 break ;
4547 case DROP :
You can’t perform that action at this time.
0 commit comments