File tree 1 file changed +19
-1
lines changed
src/main/java/gg/archipelago/client/network/client
1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,25 @@ public enum Operation {
173
173
* Applies a bitwise right-shift to the current value of the key on the server by @value.
174
174
*/
175
175
@ SerializedName ("right_shift" )
176
- RIGHT_SHIFT
176
+ RIGHT_SHIFT ,
177
+
178
+ /**
179
+ * List only: removes the first instance of @value found in the list.
180
+ */
181
+ @ SerializedName ("remove" )
182
+ REMOVE ,
183
+
184
+ /**
185
+ * List or Dict: for lists it will remove the index of the @value given. for dicts it removes the element with the specified key of value.
186
+ */
187
+ @ SerializedName ("pop" )
188
+ POP ,
189
+
190
+ /**
191
+ * Dict only: Updates the dictionary with the specified elements given in @value creating new keys, or updating old ones if they previously existed.
192
+ */
193
+ @ SerializedName ("update" )
194
+ UPDATE
177
195
178
196
}
179
197
}
You can’t perform that action at this time.
0 commit comments