minecraft-data 3.81.2 → 3.82.0
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 +1 -1
- package/doc/history.md +4 -0
- package/index.d.ts +6 -0
- package/minecraft-data/data/bedrock/1.21.30/protocol.json +0 -4
- package/minecraft-data/data/bedrock/1.21.30/types.yml +0 -1
- package/minecraft-data/data/bedrock/1.21.42/protocol.json +0 -4
- package/minecraft-data/data/bedrock/1.21.42/types.yml +0 -1
- package/minecraft-data/data/bedrock/1.21.50/protocol.json +0 -4
- package/minecraft-data/data/bedrock/1.21.50/steve.json +1 -0
- package/minecraft-data/data/bedrock/latest/types.yml +0 -1
- package/minecraft-data/data/dataPaths.json +1 -1
- package/minecraft-data/data/pc/1.21.3/protocol.json +1 -4
- package/minecraft-data/data/pc/common/features.json +10 -0
- package/minecraft-data/data/pc/latest/proto.yml +1 -1
- package/minecraft-data/doc/history.md +4 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -2347,7 +2347,7 @@ module.exports =
|
|
|
2347
2347
|
get effects () { return require("./minecraft-data/data/pc/1.17/effects.json") },
|
|
2348
2348
|
get protocol () { return require("./minecraft-data/data/bedrock/1.21.50/protocol.json") },
|
|
2349
2349
|
get windows () { return require("./minecraft-data/data/bedrock/1.16.201/windows.json") },
|
|
2350
|
-
get steve () { return require("./minecraft-data/data/bedrock/1.
|
|
2350
|
+
get steve () { return require("./minecraft-data/data/bedrock/1.21.50/steve.json") },
|
|
2351
2351
|
get blocksB2J () { return require("./minecraft-data/data/bedrock/1.21.0/blocksB2J.json") },
|
|
2352
2352
|
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.21.0/blocksJ2B.json") },
|
|
2353
2353
|
proto: __dirname + '/minecraft-data/data/bedrock/latest/proto.yml',
|
package/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1363,6 +1363,12 @@ declare namespace MinecraftData {
|
|
|
1363
1363
|
/** `1.21 - latest`
|
|
1364
1364
|
* The server needs to send the registry data to the client before sending the finish_configuration packet */
|
|
1365
1365
|
"registryDataIsMandatory": boolean;
|
|
1366
|
+
/** `1.21.3 - latest`
|
|
1367
|
+
* New player_input packet for movements, which replaces steer_vehicle */
|
|
1368
|
+
"newPlayerInputPacket": boolean;
|
|
1369
|
+
/** `1.21.3 - latest`
|
|
1370
|
+
* Server does not send ack on creative_set_slot packets */
|
|
1371
|
+
"noAckOnCreateSetSlotPacket": boolean;
|
|
1366
1372
|
}
|
|
1367
1373
|
|
|
1368
1374
|
type Object = { [key: string]: any }
|
|
@@ -1074,7 +1074,6 @@ ItemStackRequest:
|
|
|
1074
1074
|
if optional:
|
|
1075
1075
|
# For the cartography table, if a certain MULTI recipe is being called, this points to the network ID that was assigned.
|
|
1076
1076
|
recipe_network_id: varint
|
|
1077
|
-
times_crafted: u8
|
|
1078
1077
|
# Most likely the index in the request's filter strings that this action is using
|
|
1079
1078
|
filtered_string_index: li32
|
|
1080
1079
|
if craft_grindstone_request:
|
|
@@ -1078,7 +1078,6 @@ ItemStackRequest:
|
|
|
1078
1078
|
if optional:
|
|
1079
1079
|
# For the cartography table, if a certain MULTI recipe is being called, this points to the network ID that was assigned.
|
|
1080
1080
|
recipe_network_id: varint
|
|
1081
|
-
times_crafted: u8
|
|
1082
1081
|
# Most likely the index in the request's filter strings that this action is using
|
|
1083
1082
|
filtered_string_index: li32
|
|
1084
1083
|
if craft_grindstone_request:
|