Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-04 23:30:24 +01:00
Ursprung
28219a3993
Commit
78bb5f171f
@ -841,9 +841,10 @@ public class Protocol1_13To1_12_2 extends Protocol<ClientboundPackets1_12_1, Cli
|
|||||||
int type = wrapper.get(Type.VAR_INT, 0);
|
int type = wrapper.get(Type.VAR_INT, 0);
|
||||||
|
|
||||||
if (type == 0) {
|
if (type == 0) {
|
||||||
Integer id = Ints.tryParse(wrapper.read(Type.STRING).substring(18));
|
String s = wrapper.read(Type.STRING);
|
||||||
|
Integer id;
|
||||||
// Custom recipes
|
// Custom recipes
|
||||||
if (id == null) {
|
if (s.length() < 19 || (id = Ints.tryParse(s.substring(18))) == null) {
|
||||||
wrapper.cancel();
|
wrapper.cancel();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren