Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.20.2 Support #1088

Merged
merged 42 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
a38fa8d
initial work for 1.20.2
Paul19988 Sep 23, 2023
0adc6f0
update
Paul19988 Sep 24, 2023
e24b8da
I *think* I made it better
Paul19988 Sep 24, 2023
d2c30fc
fix client not agreeing with finish
Paul19988 Sep 24, 2023
22ee0c8
latest changes
Paul19988 Sep 24, 2023
3e9fb04
possibly fix old support
Paul19988 Sep 24, 2023
b014087
More bugfixes
Redned235 Sep 24, 2023
d81c78a
remove sysouts
Paul19988 Sep 24, 2023
1925195
Add a play packet queue for packets sent during the config state
Redned235 Sep 24, 2023
98013f0
Fix resource pack packet id
Redned235 Sep 24, 2023
252c40a
reduce amount of reformatting
Paul19988 Sep 24, 2023
2e5f7fb
fix random spaces
Paul19988 Sep 24, 2023
09a41c2
remove wildcards
Paul19988 Sep 24, 2023
f5b7fa8
make requested changes
Paul19988 Sep 24, 2023
87cd110
reformat using google style format
Paul19988 Sep 24, 2023
bea6c30
fix style violations
Paul19988 Sep 24, 2023
0a6e913
remove redundent code
Paul19988 Sep 24, 2023
4908501
remove missed references
Paul19988 Sep 24, 2023
034953e
Ensure super.channelInactive is called in PlayPacketQueueHandler
Redned235 Sep 25, 2023
75411ce
Fix login race case
pkt77 Sep 24, 2023
0bc584e
sigh
Redned235 Sep 25, 2023
53dc57e
fix style violations
Paul19988 Sep 25, 2023
2520dfd
fix climbables
Paul19988 Sep 25, 2023
f8a5594
fix support for skin layers not loading
Paul19988 Sep 26, 2023
0b12a2b
fix servers pinging servers
Paul19988 Sep 26, 2023
45f6167
fix client settings not forwarding between servers
Paul19988 Sep 26, 2023
1474c7e
change to a single value instead of a list
Paul19988 Sep 26, 2023
cb21a2c
disable auto reading during state switch
Gerrygames Sep 27, 2023
a097e34
ensure client settings packet is not null
Paul19988 Sep 27, 2023
c1c1b9b
remove cappedset
Paul19988 Sep 27, 2023
6b7afbc
bring back static imports
Paul19988 Sep 27, 2023
3572fb4
Merge pull request #1 from Gerrygames/dev/1.20.2
Paul19988 Sep 27, 2023
cd1d2dc
remove experimental
Paul19988 Sep 27, 2023
c24f4f6
Fix support for backend server resource packs & possibly fix plugin m…
Paul19988 Oct 3, 2023
fb94816
Code style changes
Paul19988 Oct 3, 2023
b789257
Allow serverbound config packets to pass through freely
Paul19988 Oct 3, 2023
1b07659
incorporate changes recommended by Wesley1808
Paul19988 Oct 3, 2023
c076f04
Support switch to config state by backend server
Gerrygames Oct 6, 2023
fadf839
Reapply resource pack after config state
Gerrygames Oct 7, 2023
f71bcfa
Add play packet queue after sending StartUpdate
Gerrygames Oct 7, 2023
3f6e69b
Make sure to decode packets with the correct state registry
Gerrygames Oct 7, 2023
3180764
Revert nearly all reformatting
bluegreensea Oct 10, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ public enum ProtocolVersion {
MINECRAFT_1_19_1(760, "1.19.1", "1.19.2"),
MINECRAFT_1_19_3(761, "1.19.3"),
MINECRAFT_1_19_4(762, "1.19.4"),
MINECRAFT_1_20(763, "1.20", "1.20.1");
MINECRAFT_1_20(763, "1.20", "1.20.1"),
MINECRAFT_1_20_2(764, "1.20.2");

private static final int SNAPSHOT_BIT = 30;

Expand Down
Loading