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 79910b5 commit 4bb25c3Copy full SHA for 4bb25c3
MinecraftClient/Protocol/Handlers/Packet/s2c/DeclareCommands.cs
@@ -96,7 +96,7 @@ public static void Read(DataTypes dataTypes, Queue<byte> packetData, int protoco
96
44 => new ParserResource(dataTypes, packetData),
97
50 => protocolVersion == Protocol18Handler.MC_1_19_4_Version ?
98
new ParserForgeEnum(dataTypes, packetData) :
99
- new ParserEmpty(dataTypes, packetData),
+ new ParserEmpty(dataTypes, packetData),
100
51 => (protocolVersion >= Protocol18Handler.MC_1_20_Version &&
101
protocolVersion <= Protocol18Handler.MC_1_20_2_Version) ? // 1.20 - 1.20.2
102
@@ -124,6 +124,7 @@ public static void Read(DataTypes dataTypes, Queue<byte> packetData, int protoco
124
43 => new ParserResourceOrTag(dataTypes, packetData),
125
126
45 => new ParserResource(dataTypes, packetData),
127
+ 52 => new ParserForgeEnum(dataTypes, packetData),
128
_ => new ParserEmpty(dataTypes, packetData),
129
};
130
}
0 commit comments