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 729db85 commit 64130b3Copy full SHA for 64130b3
mcdreforged.plugin.json
@@ -1,6 +1,6 @@
1
{
2
"id": "packet_parser",
3
- "version": "0.0.3",
+ "version": "0.0.4",
4
"name": "PacketParser",
5
"author": [
6
"zyxkad"
packet_parser/commandnode/node.py
@@ -284,6 +284,13 @@ def get_id_map(protocol: int) -> list[str]:
284
285
@final
286
class Node:
287
+ ROOT = 0x00
288
+ LITERAL = 0x01
289
+ ARGUMENT = 0x02
290
+ EXECUTABLE_FLAG = 0x04
291
+ REDIRECT_FLAG = 0x08
292
+ SUGGESTIONS_FLAG = 0x10
293
+
294
def __init__(self,
295
protocol: int,
296
flags: int, # Byte
0 commit comments