Skip to content

Commit

Permalink
network: 1.20.3-pre3..1.20.4
Browse files Browse the repository at this point in the history
They fixed a bug in the explosion packet, and added the `DOWNLOADED` state in resourcepack
  • Loading branch information
Bixilon committed Dec 7, 2023
1 parent a960320 commit 0bbab0c
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ class ResourcepackC2SP(
DECLINED,
FAILED_DOWNLOAD,
ACCEPTED,

// all below added in 1.20.3-pre1
DOWNLOADED, // TODO: added in 1.20.3-pre3
INVALID_URL,
FAILED_RELOAD,
DISCARDED,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ package de.bixilon.minosoft.protocol.protocol

@Suppress("UNUSED")
object ProtocolVersions {
const val V_1_20_4 = 931
const val V_1_20_4_RC1 = 930
@Deprecated("Same PVN as 1.20.4", level = DeprecationLevel.ERROR) const val V_1_20_3 = 929
const val V_1_20_3_RC1 = 928
const val V_1_20_3_PRE4 = 927
const val V_1_20_3_PRE3 = 926
const val V_1_20_3_PRE2 = 925
const val V_1_20_3_PRE1 = 924
const val V_23W46A = 923
Expand Down

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions src/main/resources/assets/minosoft/mapping/versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
{
"931": {
"name": "1.20.4",
"protocol_id": 765,
"packets": 924,
"type": "release"
},
"930": {
"name": "1.20.4-rc1",
"protocol_id": 10737419903,
"packets": 924
},
"928": {
"name": "1.20.3-rc1",
"protocol_id": 10737419902,
"packets": 924
},
"927": {
"name": "1.20.3-pre4",
"protocol_id": 10737419901,
"packets": 924
},
"926": {
"name": "1.20.3-pre3",
"protocol_id": 1073741990,
"packets": 924
},
"925": {
"name": "1.20.3-pre2",
"protocol_id": 1073741989,
Expand Down

0 comments on commit 0bbab0c

Please sign in to comment.