minecraft-data 3.79.0 → 3.80.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data.js +24 -2
- package/doc/history.md +8 -0
- package/index.d.ts +3 -0
- package/minecraft-data/README.md +2 -2
- package/minecraft-data/data/bedrock/1.16.210/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.16.220/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.17.0/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.17.10/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.17.30/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.17.40/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.18.0/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.18.11/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.18.30/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.1/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.10/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.20/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.21/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.30/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.40/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.50/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.60/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.62/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.70/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.19.80/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.20.0/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.20.10/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.20.30/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.20.40/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.20.50/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.20.61/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.20.71/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.20.80/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.21.0/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.21.2/proto.yml +0 -1
- package/minecraft-data/data/bedrock/1.21.20/proto.yml +2 -3
- package/minecraft-data/data/bedrock/1.21.20/protocol.json +2 -2
- package/minecraft-data/data/bedrock/1.21.20/types.yml +1 -1
- package/minecraft-data/data/bedrock/1.21.30/proto.yml +2 -3
- package/minecraft-data/data/bedrock/1.21.30/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.21.42/proto.yml +4336 -0
- package/minecraft-data/data/bedrock/1.21.42/protocol.json +3 -3
- package/minecraft-data/data/bedrock/1.21.42/types.yml +2422 -0
- package/minecraft-data/data/bedrock/1.21.50/protocol.json +13034 -0
- package/minecraft-data/data/bedrock/1.21.50/version.json +6 -0
- package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
- package/minecraft-data/data/bedrock/common/versions.json +2 -1
- package/minecraft-data/data/bedrock/latest/proto.yml +80 -5
- package/minecraft-data/data/bedrock/latest/types.yml +20 -3
- package/minecraft-data/data/dataPaths.json +24 -2
- package/minecraft-data/data/pc/1.19.4/loginPacket.json +7264 -0
- package/minecraft-data/data/pc/common/features.json +5 -0
- package/minecraft-data/doc/history.md +9 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -1260,7 +1260,7 @@ module.exports =
|
|
|
1260
1260
|
get particles () { return require("./minecraft-data/data/pc/1.19.4/particles.json") },
|
|
1261
1261
|
get blockLoot () { return require("./minecraft-data/data/pc/1.19/blockLoot.json") },
|
|
1262
1262
|
get entityLoot () { return require("./minecraft-data/data/pc/1.19/entityLoot.json") },
|
|
1263
|
-
get loginPacket () { return require("./minecraft-data/data/pc/1.19.
|
|
1263
|
+
get loginPacket () { return require("./minecraft-data/data/pc/1.19.4/loginPacket.json") },
|
|
1264
1264
|
get tints () { return require("./minecraft-data/data/pc/1.19.4/tints.json") },
|
|
1265
1265
|
get mapIcons () { return require("./minecraft-data/data/pc/1.16/mapIcons.json") },
|
|
1266
1266
|
get sounds () { return require("./minecraft-data/data/pc/1.19.2/sounds.json") },
|
|
@@ -2328,10 +2328,32 @@ module.exports =
|
|
|
2328
2328
|
get steve () { return require("./minecraft-data/data/bedrock/1.20.80/steve.json") },
|
|
2329
2329
|
get blocksB2J () { return require("./minecraft-data/data/bedrock/1.21.0/blocksB2J.json") },
|
|
2330
2330
|
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.21.0/blocksJ2B.json") },
|
|
2331
|
-
proto: __dirname + '/minecraft-data/data/bedrock/
|
|
2331
|
+
proto: __dirname + '/minecraft-data/data/bedrock/1.21.42/proto.yml',
|
|
2332
2332
|
types: __dirname + '/minecraft-data/data/bedrock/latest/types.yml',
|
|
2333
2333
|
get version () { return require("./minecraft-data/data/bedrock/1.21.42/version.json") },
|
|
2334
2334
|
get language () { return require("./minecraft-data/data/bedrock/1.20.10/language.json") }
|
|
2335
|
+
},
|
|
2336
|
+
'1.21.50': {
|
|
2337
|
+
get blocks () { return require("./minecraft-data/data/bedrock/1.21.0/blocks.json") },
|
|
2338
|
+
get blockStates () { return require("./minecraft-data/data/bedrock/1.21.0/blockStates.json") },
|
|
2339
|
+
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.21.0/blockCollisionShapes.json") },
|
|
2340
|
+
get biomes () { return require("./minecraft-data/data/bedrock/1.20.0/biomes.json") },
|
|
2341
|
+
get entities () { return require("./minecraft-data/data/bedrock/1.21.0/entities.json") },
|
|
2342
|
+
get items () { return require("./minecraft-data/data/bedrock/1.21.0/items.json") },
|
|
2343
|
+
get recipes () { return require("./minecraft-data/data/bedrock/1.19.10/recipes.json") },
|
|
2344
|
+
get instruments () { return require("./minecraft-data/data/bedrock/1.17.0/instruments.json") },
|
|
2345
|
+
get materials () { return require("./minecraft-data/data/pc/1.17/materials.json") },
|
|
2346
|
+
get enchantments () { return require("./minecraft-data/data/bedrock/1.19.1/enchantments.json") },
|
|
2347
|
+
get effects () { return require("./minecraft-data/data/pc/1.17/effects.json") },
|
|
2348
|
+
get protocol () { return require("./minecraft-data/data/bedrock/1.21.50/protocol.json") },
|
|
2349
|
+
get windows () { return require("./minecraft-data/data/bedrock/1.16.201/windows.json") },
|
|
2350
|
+
get steve () { return require("./minecraft-data/data/bedrock/1.20.80/steve.json") },
|
|
2351
|
+
get blocksB2J () { return require("./minecraft-data/data/bedrock/1.21.0/blocksB2J.json") },
|
|
2352
|
+
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.21.0/blocksJ2B.json") },
|
|
2353
|
+
proto: __dirname + '/minecraft-data/data/bedrock/latest/proto.yml',
|
|
2354
|
+
types: __dirname + '/minecraft-data/data/bedrock/latest/types.yml',
|
|
2355
|
+
get version () { return require("./minecraft-data/data/bedrock/1.21.50/version.json") },
|
|
2356
|
+
get language () { return require("./minecraft-data/data/bedrock/1.20.10/language.json") }
|
|
2335
2357
|
}
|
|
2336
2358
|
}
|
|
2337
2359
|
}
|
package/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1306,6 +1306,9 @@ declare namespace MinecraftData {
|
|
|
1306
1306
|
/** `1.19.3 - latest`
|
|
1307
1307
|
* The player_info packet may contain multiple actions in one packet. The actions field is a bitfield signifying what actions are included */
|
|
1308
1308
|
"playerInfoActionIsBitfield": boolean;
|
|
1309
|
+
/** `1.19.3 - latest`
|
|
1310
|
+
* The named_sound_effect packet was removed and you must use the expanded sound_effect packet */
|
|
1311
|
+
"removedNamedSoundEffectPacket": boolean;
|
|
1309
1312
|
/** `1.19_major - latest`
|
|
1310
1313
|
* Chat messages are formatted on the client side */
|
|
1311
1314
|
"clientsideChatFormatting": boolean;
|
package/minecraft-data/README.md
CHANGED
|
@@ -9,8 +9,8 @@ Language independent module providing minecraft data for minecraft clients, serv
|
|
|
9
9
|
|
|
10
10
|
Supports
|
|
11
11
|
* Minecraft PC version 0.30c (classic), 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4),
|
|
12
|
-
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19 (1.19, 1.19.2, 1.19.3, 1.19.4), 1.20 (1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6), 1.21 (1.21, 1.21.1)
|
|
13
|
-
* Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80, 1.20.0, 1.20.10, 1.20.30, 1.20.40, 1.20.50, 1.20.61, 1.20.71, 1.20.80, 1.21.0, 1.21.2, 1.21.20, 1.21.30, 1.21.42
|
|
12
|
+
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19 (1.19, 1.19.2, 1.19.3, 1.19.4), 1.20 (1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6), 1.21 (1.21, 1.21.1, 1.21.3)
|
|
13
|
+
* Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80, 1.20.0, 1.20.10, 1.20.30, 1.20.40, 1.20.50, 1.20.61, 1.20.71, 1.20.80, 1.21.0, 1.21.2, 1.21.20, 1.21.30, 1.21.42, 1.21.50
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
## Wrappers
|
|
@@ -2296,7 +2296,6 @@ packet_player_auth_input:
|
|
|
2296
2296
|
# concerned a block. If not, the face is always 0.
|
|
2297
2297
|
face: zigzag32
|
|
2298
2298
|
|
|
2299
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2300
2299
|
InputFlag: [ "bitflags", {
|
|
2301
2300
|
"type": "varint64", "big": true,
|
|
2302
2301
|
"flags": [
|
|
@@ -2748,7 +2748,6 @@ packet_player_auth_input:
|
|
|
2748
2748
|
# concerned a block. If not, the face is always 0.
|
|
2749
2749
|
face: zigzag32
|
|
2750
2750
|
|
|
2751
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2752
2751
|
InputFlag: [ "bitflags", {
|
|
2753
2752
|
"type": "varint64", "big": true,
|
|
2754
2753
|
"flags": [
|
|
@@ -2750,7 +2750,6 @@ packet_player_auth_input:
|
|
|
2750
2750
|
# concerned a block. If not, the face is always 0.
|
|
2751
2751
|
face: zigzag32
|
|
2752
2752
|
|
|
2753
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2754
2753
|
InputFlag: [ "bitflags", {
|
|
2755
2754
|
"type": "varint64", "big": true,
|
|
2756
2755
|
"flags": [
|
|
@@ -2847,7 +2847,6 @@ packet_player_auth_input:
|
|
|
2847
2847
|
# concerned a block. If not, the face is always 0.
|
|
2848
2848
|
face: zigzag32
|
|
2849
2849
|
|
|
2850
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2851
2850
|
InputFlag: [ "bitflags", {
|
|
2852
2851
|
"type": "varint64", "big": true,
|
|
2853
2852
|
"flags": [
|
|
@@ -2877,7 +2877,6 @@ packet_player_auth_input:
|
|
|
2877
2877
|
# concerned a block. If not, the face is always 0.
|
|
2878
2878
|
face: zigzag32
|
|
2879
2879
|
|
|
2880
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2881
2880
|
InputFlag: [ "bitflags", {
|
|
2882
2881
|
"type": "varint64", "big": true,
|
|
2883
2882
|
"flags": [
|
|
@@ -2877,7 +2877,6 @@ packet_player_auth_input:
|
|
|
2877
2877
|
# concerned a block. If not, the face is always 0.
|
|
2878
2878
|
face: zigzag32
|
|
2879
2879
|
|
|
2880
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2881
2880
|
InputFlag: [ "bitflags", {
|
|
2882
2881
|
"type": "varint64", "big": true,
|
|
2883
2882
|
"flags": [
|
|
@@ -2884,7 +2884,6 @@ packet_player_auth_input:
|
|
|
2884
2884
|
# concerned a block. If not, the face is always 0.
|
|
2885
2885
|
face: zigzag32
|
|
2886
2886
|
|
|
2887
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2888
2887
|
InputFlag: [ "bitflags", {
|
|
2889
2888
|
"type": "varint64", "big": true,
|
|
2890
2889
|
"flags": [
|
|
@@ -2891,7 +2891,6 @@ packet_player_auth_input:
|
|
|
2891
2891
|
# concerned a block. If not, the face is always 0.
|
|
2892
2892
|
face: zigzag32
|
|
2893
2893
|
|
|
2894
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2895
2894
|
InputFlag: [ "bitflags", {
|
|
2896
2895
|
"type": "varint64", "big": true,
|
|
2897
2896
|
"flags": [
|
|
@@ -2905,7 +2905,6 @@ packet_player_auth_input:
|
|
|
2905
2905
|
# concerned a block. If not, the face is always 0.
|
|
2906
2906
|
face: zigzag32
|
|
2907
2907
|
|
|
2908
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2909
2908
|
InputFlag: [ "bitflags", {
|
|
2910
2909
|
"type": "varint64", "big": true,
|
|
2911
2910
|
"flags": [
|
|
@@ -2924,7 +2924,6 @@ packet_player_auth_input:
|
|
|
2924
2924
|
# concerned a block. If not, the face is always 0.
|
|
2925
2925
|
face: zigzag32
|
|
2926
2926
|
|
|
2927
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2928
2927
|
InputFlag: [ "bitflags", {
|
|
2929
2928
|
"type": "varint64", "big": true,
|
|
2930
2929
|
"flags": [
|
|
@@ -2975,7 +2975,6 @@ packet_player_auth_input:
|
|
|
2975
2975
|
# concerned a block. If not, the face is always 0.
|
|
2976
2976
|
face: zigzag32
|
|
2977
2977
|
|
|
2978
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
2979
2978
|
InputFlag: [ "bitflags", {
|
|
2980
2979
|
"type": "varint64", "big": true,
|
|
2981
2980
|
"flags": [
|
|
@@ -3012,7 +3012,6 @@ packet_player_auth_input:
|
|
|
3012
3012
|
# concerned a block. If not, the face is always 0.
|
|
3013
3013
|
face: zigzag32
|
|
3014
3014
|
|
|
3015
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3016
3015
|
InputFlag: [ "bitflags", {
|
|
3017
3016
|
"type": "varint64", "big": true,
|
|
3018
3017
|
"flags": [
|
|
@@ -3012,7 +3012,6 @@ packet_player_auth_input:
|
|
|
3012
3012
|
# concerned a block. If not, the face is always 0.
|
|
3013
3013
|
face: zigzag32
|
|
3014
3014
|
|
|
3015
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3016
3015
|
InputFlag: [ "bitflags", {
|
|
3017
3016
|
"type": "varint64", "big": true,
|
|
3018
3017
|
"flags": [
|
|
@@ -3027,7 +3027,6 @@ packet_player_auth_input:
|
|
|
3027
3027
|
# concerned a block. If not, the face is always 0.
|
|
3028
3028
|
face: zigzag32
|
|
3029
3029
|
|
|
3030
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3031
3030
|
InputFlag: [ "bitflags", {
|
|
3032
3031
|
"type": "varint64", "big": true,
|
|
3033
3032
|
"flags": [
|
|
@@ -3037,7 +3037,6 @@ packet_player_auth_input:
|
|
|
3037
3037
|
# concerned a block. If not, the face is always 0.
|
|
3038
3038
|
face: zigzag32
|
|
3039
3039
|
|
|
3040
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3041
3040
|
InputFlag: [ "bitflags", {
|
|
3042
3041
|
"type": "varint64", "big": true,
|
|
3043
3042
|
"flags": [
|
|
@@ -3039,7 +3039,6 @@ packet_player_auth_input:
|
|
|
3039
3039
|
# concerned a block. If not, the face is always 0.
|
|
3040
3040
|
face: zigzag32
|
|
3041
3041
|
|
|
3042
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3043
3042
|
InputFlag: [ "bitflags", {
|
|
3044
3043
|
"type": "varint64", "big": true,
|
|
3045
3044
|
"flags": [
|
|
@@ -3045,7 +3045,6 @@ packet_player_auth_input:
|
|
|
3045
3045
|
# concerned a block. If not, the face is always 0.
|
|
3046
3046
|
face: zigzag32
|
|
3047
3047
|
|
|
3048
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3049
3048
|
InputFlag: [ "bitflags", {
|
|
3050
3049
|
"type": "varint64", "big": true,
|
|
3051
3050
|
"flags": [
|
|
@@ -3046,7 +3046,6 @@ packet_player_auth_input:
|
|
|
3046
3046
|
# concerned a block. If not, the face is always 0.
|
|
3047
3047
|
face: zigzag32
|
|
3048
3048
|
|
|
3049
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3050
3049
|
InputFlag: [ "bitflags", {
|
|
3051
3050
|
"type": "varint64", "big": true,
|
|
3052
3051
|
"flags": [
|
|
@@ -3049,7 +3049,6 @@ packet_player_auth_input:
|
|
|
3049
3049
|
# values which are created using an analogue input.
|
|
3050
3050
|
analogue_move_vector: vec2f
|
|
3051
3051
|
|
|
3052
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3053
3052
|
InputFlag: [ "bitflags", {
|
|
3054
3053
|
"type": "varint64", "big": true,
|
|
3055
3054
|
"flags": [
|
|
@@ -3062,7 +3062,6 @@ packet_player_auth_input:
|
|
|
3062
3062
|
# values which are created using an analogue input.
|
|
3063
3063
|
analogue_move_vector: vec2f
|
|
3064
3064
|
|
|
3065
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3066
3065
|
InputFlag: [ "bitflags", {
|
|
3067
3066
|
"type": "varint64", "big": true,
|
|
3068
3067
|
"flags": [
|
|
@@ -3073,7 +3073,6 @@ packet_player_auth_input:
|
|
|
3073
3073
|
# values which are created using an analogue input.
|
|
3074
3074
|
analogue_move_vector: vec2f
|
|
3075
3075
|
|
|
3076
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3077
3076
|
InputFlag: [ "bitflags", {
|
|
3078
3077
|
"type": "varint64", "big": true,
|
|
3079
3078
|
"flags": [
|
|
@@ -3096,7 +3096,6 @@ packet_player_auth_input:
|
|
|
3096
3096
|
# values which are created using an analogue input.
|
|
3097
3097
|
analogue_move_vector: vec2f
|
|
3098
3098
|
|
|
3099
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3100
3099
|
InputFlag: [ "bitflags", {
|
|
3101
3100
|
"type": "varint64", "big": true,
|
|
3102
3101
|
"flags": [
|
|
@@ -3104,7 +3104,6 @@ packet_player_auth_input:
|
|
|
3104
3104
|
# values which are created using an analogue input.
|
|
3105
3105
|
analogue_move_vector: vec2f
|
|
3106
3106
|
|
|
3107
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3108
3107
|
InputFlag: [ "bitflags", {
|
|
3109
3108
|
"type": "varint64", "big": true,
|
|
3110
3109
|
"flags": [
|
|
@@ -3107,7 +3107,6 @@ packet_player_auth_input:
|
|
|
3107
3107
|
# values which are created using an analogue input.
|
|
3108
3108
|
analogue_move_vector: vec2f
|
|
3109
3109
|
|
|
3110
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3111
3110
|
InputFlag: [ "bitflags", {
|
|
3112
3111
|
"type": "varint64", "big": true,
|
|
3113
3112
|
"flags": [
|
|
@@ -3112,7 +3112,6 @@ packet_player_auth_input:
|
|
|
3112
3112
|
# values which are created using an analogue input.
|
|
3113
3113
|
analogue_move_vector: vec2f
|
|
3114
3114
|
|
|
3115
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3116
3115
|
InputFlag: [ "bitflags", {
|
|
3117
3116
|
"type": "varint64", "big": true,
|
|
3118
3117
|
"flags": [
|
|
@@ -3099,7 +3099,6 @@ packet_player_auth_input:
|
|
|
3099
3099
|
# values which are created using an analogue input.
|
|
3100
3100
|
analogue_move_vector: vec2f
|
|
3101
3101
|
|
|
3102
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3103
3102
|
InputFlag: [ "bitflags", {
|
|
3104
3103
|
"type": "varint64", "big": true,
|
|
3105
3104
|
"flags": [
|
|
@@ -3104,7 +3104,6 @@ packet_player_auth_input:
|
|
|
3104
3104
|
# values which are created using an analogue input.
|
|
3105
3105
|
analogue_move_vector: vec2f
|
|
3106
3106
|
|
|
3107
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3108
3107
|
InputFlag: [ "bitflags", {
|
|
3109
3108
|
"type": "varint64", "big": true,
|
|
3110
3109
|
"flags": [
|
|
@@ -3109,7 +3109,6 @@ packet_player_auth_input:
|
|
|
3109
3109
|
# values which are created using an analogue input.
|
|
3110
3110
|
analogue_move_vector: vec2f
|
|
3111
3111
|
|
|
3112
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3113
3112
|
InputFlag: [ "bitflags", {
|
|
3114
3113
|
"type": "varint64", "big": true,
|
|
3115
3114
|
"flags": [
|
|
@@ -3120,7 +3120,6 @@ packet_player_auth_input:
|
|
|
3120
3120
|
# values which are created using an analogue input.
|
|
3121
3121
|
analogue_move_vector: vec2f
|
|
3122
3122
|
|
|
3123
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3124
3123
|
InputFlag: [ "bitflags", {
|
|
3125
3124
|
"type": "varint64", "big": true,
|
|
3126
3125
|
"flags": [
|
|
@@ -3120,7 +3120,6 @@ packet_player_auth_input:
|
|
|
3120
3120
|
# values which are created using an analogue input.
|
|
3121
3121
|
analogue_move_vector: vec2f
|
|
3122
3122
|
|
|
3123
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3124
3123
|
InputFlag: [ "bitflags", {
|
|
3125
3124
|
"type": "varint64", "big": true,
|
|
3126
3125
|
"flags": [
|
|
@@ -3130,7 +3130,6 @@ packet_player_auth_input:
|
|
|
3130
3130
|
# values which are created using an analogue input.
|
|
3131
3131
|
analogue_move_vector: vec2f
|
|
3132
3132
|
|
|
3133
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3134
3133
|
InputFlag: [ "bitflags", {
|
|
3135
3134
|
"type": "varint64", "big": true,
|
|
3136
3135
|
"flags": [
|
|
@@ -4227,7 +4226,7 @@ packet_serverbound_loading_screen:
|
|
|
4227
4226
|
!bound: server
|
|
4228
4227
|
# The type of the loading screen event.
|
|
4229
4228
|
type: zigzag32
|
|
4230
|
-
loading_screen_id?:
|
|
4229
|
+
loading_screen_id?: lu32
|
|
4231
4230
|
|
|
4232
4231
|
# JigsawStructureData is sent by the server to let the client know all the rules for jigsaw structures.
|
|
4233
4232
|
packet_jigsaw_structure_data:
|
|
@@ -4260,4 +4259,4 @@ packet_serverbound_diagnostics:
|
|
|
4260
4259
|
average_render_time: lf32
|
|
4261
4260
|
average_end_frame_time: lf32
|
|
4262
4261
|
average_remainder_time_percent: lf32
|
|
4263
|
-
average_unaccounted_time_percent: lf32
|
|
4262
|
+
average_unaccounted_time_percent: lf32
|
|
@@ -4520,7 +4520,7 @@
|
|
|
4520
4520
|
"name": "radius",
|
|
4521
4521
|
"type": [
|
|
4522
4522
|
"option",
|
|
4523
|
-
"
|
|
4523
|
+
"lf32"
|
|
4524
4524
|
]
|
|
4525
4525
|
},
|
|
4526
4526
|
{
|
|
@@ -12578,7 +12578,7 @@
|
|
|
12578
12578
|
"name": "loading_screen_id",
|
|
12579
12579
|
"type": [
|
|
12580
12580
|
"option",
|
|
12581
|
-
"
|
|
12581
|
+
"lu32"
|
|
12582
12582
|
]
|
|
12583
12583
|
}
|
|
12584
12584
|
]
|
|
@@ -2285,7 +2285,7 @@ CameraPresets:
|
|
|
2285
2285
|
offset?: vec2f
|
|
2286
2286
|
# Radius is only used in a follow_orbit camera and controls how far away from the player the camera should
|
|
2287
2287
|
# be rendered.
|
|
2288
|
-
radius?:
|
|
2288
|
+
radius?: lf32
|
|
2289
2289
|
## TODO: make this an enum afer adding proper optional support inside pdefyaml
|
|
2290
2290
|
audio_listener?: u8
|
|
2291
2291
|
player_effects?: bool
|
|
@@ -3133,7 +3133,6 @@ packet_player_auth_input:
|
|
|
3133
3133
|
# values which are created using an analogue input.
|
|
3134
3134
|
analogue_move_vector: vec2f
|
|
3135
3135
|
|
|
3136
|
-
#TODO: update to use the new `shift` option in bitflags
|
|
3137
3136
|
InputFlag: [ "bitflags", {
|
|
3138
3137
|
"type": "varint64", "big": true,
|
|
3139
3138
|
"flags": [
|
|
@@ -4234,7 +4233,7 @@ packet_serverbound_loading_screen:
|
|
|
4234
4233
|
!bound: server
|
|
4235
4234
|
# The type of the loading screen event.
|
|
4236
4235
|
type: zigzag32
|
|
4237
|
-
loading_screen_id?:
|
|
4236
|
+
loading_screen_id?: lu32
|
|
4238
4237
|
|
|
4239
4238
|
# JigsawStructureData is sent by the server to let the client know all the rules for jigsaw structures.
|
|
4240
4239
|
packet_jigsaw_structure_data:
|
|
@@ -4288,4 +4287,4 @@ packet_container_registry_cleanup:
|
|
|
4288
4287
|
!id: 0x13D
|
|
4289
4288
|
!bound: client
|
|
4290
4289
|
# RemovedContainers is a list of protocol.FullContainerName's that should be removed from the client-side container registry.
|
|
4291
|
-
removed_containers: FullContainerName[]varint
|
|
4290
|
+
removed_containers: FullContainerName[]varint
|
|
@@ -12585,7 +12585,7 @@
|
|
|
12585
12585
|
"name": "loading_screen_id",
|
|
12586
12586
|
"type": [
|
|
12587
12587
|
"option",
|
|
12588
|
-
"
|
|
12588
|
+
"lu32"
|
|
12589
12589
|
]
|
|
12590
12590
|
}
|
|
12591
12591
|
]
|