Merge branch 'dev' into feature/1.19.4

This commit is contained in:
Max 2023-03-15 17:30:30 +02:00 committed by GitHub
commit 37813a1fed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,7 @@ plugins {
} }
group 'ru.nanit' group 'ru.nanit'
version '1.5' version '1.5.1'
compileJava { compileJava {
options.encoding = "UTF-8" options.encoding = "UTF-8"

View File

@ -188,7 +188,7 @@ public enum State {
map(0x0C, V1_16, V1_16_4), map(0x0C, V1_16, V1_16_4),
map(0x0D, V1_17, V1_18_2), map(0x0D, V1_17, V1_18_2),
map(0x0A, V1_19, V1_19_3), map(0x0A, V1_19, V1_19_3),
map(0xB, V1_19_4, V1_19_4) map(0x0B, V1_19_4, V1_19_4)
); );
clientBound.register(PacketPlayerInfo::new, clientBound.register(PacketPlayerInfo::new,
map(0x38, V1_7_2, V1_8), map(0x38, V1_7_2, V1_8),

View File

@ -65,6 +65,7 @@ public enum Version {
V1_18_2(758), V1_18_2(758),
V1_19(759), V1_19(759),
V1_19_1(760), V1_19_1(760),
// 1.19.2 has same protocol number
V1_19_3(761), V1_19_3(761),
V1_19_4(762); V1_19_4(762);