File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
src/main/java/com/laytonsmith/abstraction/enums Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,30 @@ public enum MCInventoryAction {
8181 * {@link org.bukkit.Material#getMaxStackSize()}.
8282 */
8383 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 ,
84108 /**
85109 * An unrecognized ClickType.
86110 */
You can’t perform that action at this time.
0 commit comments