We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c9a14c commit 9672917Copy full SHA for 9672917
vane-trifles/src/main/java/org/oddlama/vane/trifles/StorageGroup.java
@@ -54,7 +54,7 @@ public void on_place_item_in_storage_inventory(InventoryClickEvent event) {
54
55
// Put non-storage items in a right-clicked storage item
56
if (event.getClick() == ClickType.RIGHT && event.getAction() == InventoryAction.SWAP_WITH_CURSOR
57
- && is_storage_item(event.getCurrentItem())) {
+ && is_storage_item(event.getCurrentItem()) && event.getCurrentItem().getAmount() == 1) {
58
59
// Allow putting in any items that are not a storage item, or storage items that have nothing in them.
60
if (!(is_storage_item(event.getCursor()) && event.getCursor().hasItemMeta())) {
0 commit comments