Skip to content

Commit 1bb02a2

Browse files
committed
Add bundle inventory actions from Paper 1.21.4
1 parent 63ff249 commit 1bb02a2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/main/java/com/laytonsmith/abstraction/enums/MCInventoryAction.java

+24
Original file line numberDiff line numberDiff 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
*/

0 commit comments

Comments
 (0)