File tree 1 file changed +24
-0
lines changed
src/main/java/com/laytonsmith/abstraction/enums
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,30 @@ public enum MCInventoryAction {
81
81
* {@link org.bukkit.Material#getMaxStackSize()}.
82
82
*/
83
83
COLLECT_TO_CURSOR ,
84
+ /**
85
+ * The first stack of items in the clicked bundle is moved to the cursor.
86
+ */
87
+ PICKUP_FROM_BUNDLE ,
88
+ /**
89
+ * All of the items on the clicked slot are moved into the bundle on the cursor.
90
+ */
91
+ PICKUP_ALL_INTO_BUNDLE ,
92
+ /**
93
+ * Some of the items on the clicked slot are moved into the bundle on the cursor.
94
+ */
95
+ PICKUP_SOME_INTO_BUNDLE ,
96
+ /**
97
+ * The first stack of items is moved to the clicked slot.
98
+ */
99
+ PLACE_FROM_BUNDLE ,
100
+ /**
101
+ * All of the items on the cursor are moved into the bundle in the clicked slot.
102
+ */
103
+ PLACE_ALL_INTO_BUNDLE ,
104
+ /**
105
+ * Some of the items on the cursor are moved into the bundle in the clicked slot.
106
+ */
107
+ PLACE_SOME_INTO_BUNDLE ,
84
108
/**
85
109
* An unrecognized ClickType.
86
110
*/
You can’t perform that action at this time.
0 commit comments