minecraft-data 3.109.1 → 3.110.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 +26 -4
- package/doc/history.md +8 -0
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.26.10/blocks.json +24708 -0
- package/minecraft-data/data/bedrock/1.26.10/proto.yml +4709 -0
- package/minecraft-data/data/bedrock/{26.10 → 1.26.10}/protocol.json +3 -3
- package/minecraft-data/data/bedrock/1.26.10/types.yml +3262 -0
- package/minecraft-data/data/bedrock/1.26.20/protocol.json +16701 -0
- package/minecraft-data/data/bedrock/1.26.20/version.json +6 -0
- package/minecraft-data/data/bedrock/common/protocolVersions.json +8 -2
- package/minecraft-data/data/bedrock/common/versions.json +2 -1
- package/minecraft-data/data/bedrock/latest/proto.yml +32 -13
- package/minecraft-data/data/bedrock/latest/types.yml +107 -9
- package/minecraft-data/data/dataPaths.json +26 -4
- package/minecraft-data/data/pc/common/protocolVersions.json +16 -0
- package/minecraft-data/doc/history.md +10 -0
- package/package.json +1 -1
- /package/minecraft-data/data/bedrock/{26.10 → 1.26.10}/version.json +0 -0
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"version": 975,
|
|
4
|
+
"minecraftVersion": "1.26.20",
|
|
5
|
+
"majorVersion": "1.26",
|
|
6
|
+
"releaseType": "release"
|
|
7
|
+
},
|
|
2
8
|
{
|
|
3
9
|
"version": 944,
|
|
4
|
-
"minecraftVersion": "26.10",
|
|
5
|
-
"majorVersion": "26.10",
|
|
10
|
+
"minecraftVersion": "1.26.10",
|
|
11
|
+
"majorVersion": "1.26.10",
|
|
6
12
|
"releaseType": "release"
|
|
7
13
|
},
|
|
8
14
|
{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Created from MiNET and gophertunnel docs
|
|
2
2
|
# The version below is the latest version this protocol schema was updated for.
|
|
3
3
|
# The output protocol.json will be in the folder for the version
|
|
4
|
-
!version: 26.
|
|
4
|
+
!version: 1.26.20
|
|
5
5
|
|
|
6
6
|
# Some ProtoDef aliases
|
|
7
7
|
string: ["pstring",{"countType":"varint"}] # String / array types
|
|
@@ -1021,7 +1021,10 @@ packet_entity_event:
|
|
|
1021
1021
|
77: vibration_detected
|
|
1022
1022
|
78: drink_milk
|
|
1023
1023
|
79: wetness_stop
|
|
1024
|
+
80: kinetic_damage_dealt
|
|
1025
|
+
81: hurt_without_receiving_damage
|
|
1024
1026
|
data: zigzag32
|
|
1027
|
+
fire_at_position?: vec3f
|
|
1025
1028
|
|
|
1026
1029
|
packet_mob_effect:
|
|
1027
1030
|
!id: 0x1c
|
|
@@ -1058,7 +1061,7 @@ packet_mob_equipment:
|
|
|
1058
1061
|
!id: 0x1f
|
|
1059
1062
|
!bound: both
|
|
1060
1063
|
runtime_entity_id: varint64
|
|
1061
|
-
item:
|
|
1064
|
+
item: ItemNew
|
|
1062
1065
|
slot: u8
|
|
1063
1066
|
selected_slot: u8
|
|
1064
1067
|
window_id: WindowID
|
|
@@ -1293,14 +1296,14 @@ packet_inventory_slot:
|
|
|
1293
1296
|
# Slot is the index of the slot that the packet modifies. The new item will be set to the slot at this index.
|
|
1294
1297
|
slot: varint
|
|
1295
1298
|
# Container is the protocol.FullContainerName that describes the container that the content is for.
|
|
1296
|
-
container
|
|
1299
|
+
container?: FullContainerName
|
|
1297
1300
|
# storage_item is the item that is acting as the storage container for the inventory. If the inventory is
|
|
1298
1301
|
# not a dynamic container then this field should be left empty. When set, only the item type is used by
|
|
1299
1302
|
# the client and none of the other stack info.
|
|
1300
|
-
storage_item
|
|
1303
|
+
storage_item?: ItemNew
|
|
1301
1304
|
# NewItem is the item to be put in the slot at Slot. It will overwrite any item that may currently
|
|
1302
1305
|
# be present in that slot.
|
|
1303
|
-
item:
|
|
1306
|
+
item: ItemNew
|
|
1304
1307
|
|
|
1305
1308
|
# ContainerSetData is sent by the server to update specific data of a single container, meaning a block such
|
|
1306
1309
|
# as a furnace or a brewing stand. This data is usually used by the client to display certain features
|
|
@@ -1852,7 +1855,7 @@ packet_available_commands:
|
|
|
1852
1855
|
58: raw_text
|
|
1853
1856
|
62: json
|
|
1854
1857
|
71: block_states
|
|
1855
|
-
|
|
1858
|
+
75: command
|
|
1856
1859
|
# In MC, this + prior field are combined to one 32bit bitfield
|
|
1857
1860
|
enum_type: lu16 =>
|
|
1858
1861
|
0x10: valid
|
|
@@ -2133,6 +2136,7 @@ packet_play_sound:
|
|
|
2133
2136
|
coordinates: BlockCoordinates
|
|
2134
2137
|
volume: lf32
|
|
2135
2138
|
pitch: lf32
|
|
2139
|
+
handle?: lu64
|
|
2136
2140
|
|
|
2137
2141
|
packet_stop_sound:
|
|
2138
2142
|
!id: 0x57
|
|
@@ -2797,6 +2801,7 @@ packet_level_sound_event:
|
|
|
2797
2801
|
# different sessions of the same world, but most servers simply fill the runtime ID of the entity out for
|
|
2798
2802
|
# this field.
|
|
2799
2803
|
entity_unique_id: li64
|
|
2804
|
+
fire_at_position?: vec3f
|
|
2800
2805
|
|
|
2801
2806
|
# LevelEventGeneric is sent by the server to send a 'generic' level event to the client. This packet sends an
|
|
2802
2807
|
# NBT serialised object and may for that reason be used for any event holding additional data.
|
|
@@ -3545,14 +3550,11 @@ packet_filter_text_packet:
|
|
|
3545
3550
|
# FromServer indicates if the packet was sent by the server or not.
|
|
3546
3551
|
from_server: bool
|
|
3547
3552
|
|
|
3548
|
-
#
|
|
3549
|
-
|
|
3553
|
+
# PrimitiveShapes is a packet sent by the server to instruct the client to render one or more shapes in the world.
|
|
3554
|
+
packet_primitive_shapes:
|
|
3550
3555
|
!id: 0xa4
|
|
3551
3556
|
!bound: client
|
|
3552
|
-
|
|
3553
|
-
has_data: bool
|
|
3554
|
-
data: has_data ?
|
|
3555
|
-
if true: DebugMarkerData
|
|
3557
|
+
shapes: PrimitiveShape[]varint
|
|
3556
3558
|
|
|
3557
3559
|
|
|
3558
3560
|
|
|
@@ -3792,6 +3794,7 @@ packet_dimension_data:
|
|
|
3792
3794
|
3: nether
|
|
3793
3795
|
4: end
|
|
3794
3796
|
5: void
|
|
3797
|
+
dimension_type: zigzag32
|
|
3795
3798
|
|
|
3796
3799
|
# AgentAction is an Education Edition packet sent from the server to the client to return a response to a
|
|
3797
3800
|
# previously requested action.
|
|
@@ -4309,6 +4312,8 @@ packet_serverbound_diagnostics:
|
|
|
4309
4312
|
average_remainder_time_percent: lf32
|
|
4310
4313
|
average_unaccounted_time_percent: lf32
|
|
4311
4314
|
memory_category_values: MemoryCategoryCounter[]varint
|
|
4315
|
+
entity_diagnostics: EntityDiagnosticTimingInfo[]varint
|
|
4316
|
+
system_diagnostics: SystemDiagnosticTimingInfo[]varint
|
|
4312
4317
|
|
|
4313
4318
|
# CameraAimAssist is sent by the server to the client to set up aim assist for the client's camera.
|
|
4314
4319
|
packet_camera_aim_assist:
|
|
@@ -4441,6 +4446,9 @@ packet_client_movement_prediction_sync:
|
|
|
4441
4446
|
jump_strength: lf32
|
|
4442
4447
|
health: lf32
|
|
4443
4448
|
hunger: lf32
|
|
4449
|
+
unknown_attribute_1: lf32
|
|
4450
|
+
unknown_attribute_2: lf32
|
|
4451
|
+
unknown_attribute_3: lf32
|
|
4444
4452
|
entity_runtime_id: varint64
|
|
4445
4453
|
is_flying: bool
|
|
4446
4454
|
|
|
@@ -4452,6 +4460,7 @@ packet_update_client_options:
|
|
|
4452
4460
|
- fancy
|
|
4453
4461
|
- advanced
|
|
4454
4462
|
- ray_traced
|
|
4463
|
+
filter_profanity?: bool
|
|
4455
4464
|
|
|
4456
4465
|
# PlayerVideoCapturePacket is sent by the server to start or stop video recording for a player. This packet
|
|
4457
4466
|
# only works on development builds and has no effect on retail builds. When recording, the client will save
|
|
@@ -4651,7 +4660,7 @@ packet_locator_bar:
|
|
|
4651
4660
|
packet_party_changed:
|
|
4652
4661
|
!id: 0x156
|
|
4653
4662
|
!bound: client
|
|
4654
|
-
|
|
4663
|
+
party_info?: PartyInfo
|
|
4655
4664
|
|
|
4656
4665
|
packet_serverbound_data_driven_screen_closed:
|
|
4657
4666
|
!id: 0x157
|
|
@@ -4707,3 +4716,13 @@ packet_clientbound_attribute_layer_sync:
|
|
|
4707
4716
|
layer_name: string
|
|
4708
4717
|
dimension_id: zigzag32
|
|
4709
4718
|
remove_attribute_names: string[]varint
|
|
4719
|
+
|
|
4720
|
+
packet_server_store_info:
|
|
4721
|
+
!id: 0x15a
|
|
4722
|
+
!bound: client
|
|
4723
|
+
store_info?: StoreEntryPointInfo
|
|
4724
|
+
|
|
4725
|
+
packet_server_presence_info:
|
|
4726
|
+
!id: 0x15b
|
|
4727
|
+
!bound: client
|
|
4728
|
+
presence_info?: PresenceInfo
|
|
@@ -129,6 +129,22 @@ ItemLegacy:
|
|
|
129
129
|
if /ShieldItemID: '["encapsulated", { "lengthType": "varint", "type": "ItemExtraDataWithBlockingTick" }]'
|
|
130
130
|
default: '["encapsulated", { "lengthType": "varint", "type": "ItemExtraDataWithoutBlockingTick" }]'
|
|
131
131
|
|
|
132
|
+
ItemNew:
|
|
133
|
+
network_id: li16
|
|
134
|
+
count: lu16
|
|
135
|
+
metadata: varint
|
|
136
|
+
has_stack_id: bool
|
|
137
|
+
stack_id: has_stack_id ?
|
|
138
|
+
if true:
|
|
139
|
+
empty: varint
|
|
140
|
+
id: zigzag32
|
|
141
|
+
default: void
|
|
142
|
+
block_runtime_id: varint
|
|
143
|
+
extra: network_id ?
|
|
144
|
+
# The Shield Item ID is sent in the StartGame packet. It is usually 355 in vanilla.
|
|
145
|
+
if /ShieldItemID: '["encapsulated", { "lengthType": "varint", "type": "ItemExtraDataWithBlockingTick" }]'
|
|
146
|
+
default: '["encapsulated", { "lengthType": "varint", "type": "ItemExtraDataWithoutBlockingTick" }]'
|
|
147
|
+
|
|
132
148
|
# An "ItemStack" here represents an Item instance. You can think about it like a pointer
|
|
133
149
|
# to an item class. The data for the class gets updated with the data in the `item` field
|
|
134
150
|
# As of 1.16.220, now functionally the same as `Item` just without an extra boolean when
|
|
@@ -333,6 +349,8 @@ MetadataDictionary: []varint
|
|
|
333
349
|
139: arrow_shooter_id
|
|
334
350
|
140: firework_direction
|
|
335
351
|
141: firework_shooter_id
|
|
352
|
+
142: reserved_139
|
|
353
|
+
143: nameplate_render_distance_max
|
|
336
354
|
type: varint =>
|
|
337
355
|
0: byte
|
|
338
356
|
1: short
|
|
@@ -496,7 +514,10 @@ MetadataFlags2: [ "bitflags", {
|
|
|
496
514
|
"does_server_auth_only_dismount",
|
|
497
515
|
"body_rotation_always_follows_head",
|
|
498
516
|
"can_use_vertical_movement_action",
|
|
499
|
-
"rotation_locked_to_vehicle"
|
|
517
|
+
"rotation_locked_to_vehicle",
|
|
518
|
+
"uses_legacy_friction",
|
|
519
|
+
"uses_uniform_air_drag",
|
|
520
|
+
"nameplate_depth_tested"
|
|
500
521
|
]
|
|
501
522
|
}]
|
|
502
523
|
|
|
@@ -783,10 +804,10 @@ Recipes: []varint
|
|
|
783
804
|
type: zigzag32 =>
|
|
784
805
|
0: shapeless #'ENTRY_SHAPELESS',
|
|
785
806
|
1: shaped #'ENTRY_SHAPED',
|
|
786
|
-
2: furnace # 'ENTRY_FURNACE',
|
|
807
|
+
2: furnace # 'ENTRY_FURNACE', # removed 1.26.20
|
|
787
808
|
# `furnace_with_metadata` is a recipe specifically used for furnace-type crafting stations. It is equal to
|
|
788
809
|
# `furnace`, except it has an input item with a specific metadata value, instead of any metadata value.
|
|
789
|
-
3: furnace_with_metadata # 'ENTRY_FURNACE_DATA',
|
|
810
|
+
3: furnace_with_metadata # 'ENTRY_FURNACE_DATA', # removed 1.26.20
|
|
790
811
|
4: multi #'ENTRY_MULTI', //TODO
|
|
791
812
|
5: shulker_box #'ENTRY_SHULKER_BOX', //TODO
|
|
792
813
|
6: shapeless_chemistry #'ENTRY_SHAPELESS_CHEMISTRY', //TODO
|
|
@@ -819,11 +840,11 @@ Recipes: []varint
|
|
|
819
840
|
assume_symmetry: bool
|
|
820
841
|
unlocking_requirement: RecipeUnlockingRequirement
|
|
821
842
|
network_id: varint
|
|
822
|
-
if furnace:
|
|
843
|
+
if furnace: # removed 1.26.20
|
|
823
844
|
input_id: zigzag32
|
|
824
845
|
output: ItemLegacy
|
|
825
846
|
block: string
|
|
826
|
-
if furnace_with_metadata:
|
|
847
|
+
if furnace_with_metadata: # removed 1.26.20
|
|
827
848
|
input_id: zigzag32
|
|
828
849
|
input_meta: zigzag32
|
|
829
850
|
output: ItemLegacy
|
|
@@ -937,7 +958,7 @@ Enchant:
|
|
|
937
958
|
level: u8
|
|
938
959
|
|
|
939
960
|
EnchantOption:
|
|
940
|
-
cost:
|
|
961
|
+
cost: u8
|
|
941
962
|
slot_flags: li32
|
|
942
963
|
equip_enchants: Enchant[]varint
|
|
943
964
|
held_enchants: Enchant[]varint
|
|
@@ -2193,6 +2214,8 @@ SoundType: varint =>
|
|
|
2193
2214
|
- ItemNetheriteSpearUse
|
|
2194
2215
|
- PauseGrowth
|
|
2195
2216
|
- ResetGrowth
|
|
2217
|
+
- PushedByPlayer
|
|
2218
|
+
- Bounce
|
|
2196
2219
|
|
|
2197
2220
|
# TODO: remove?
|
|
2198
2221
|
LegacyEntityType: li32 =>
|
|
@@ -2584,8 +2607,8 @@ GatheringJoinInfo:
|
|
|
2584
2607
|
experience_world_id: uuid
|
|
2585
2608
|
experience_world_name: string
|
|
2586
2609
|
creator_id: string
|
|
2587
|
-
|
|
2588
|
-
|
|
2610
|
+
target_id: uuid
|
|
2611
|
+
scenario_id: string
|
|
2589
2612
|
server_id: string
|
|
2590
2613
|
|
|
2591
2614
|
StoreEntryPointInfo:
|
|
@@ -2739,6 +2762,10 @@ DisconnectFailReason: zigzag32 =>
|
|
|
2739
2762
|
- editor_mismatch_editor_to_vanilla
|
|
2740
2763
|
- editor_mismatch_vanilla_to_editor
|
|
2741
2764
|
- deny_listed
|
|
2765
|
+
- nonce_missing
|
|
2766
|
+
- nonce_not_found
|
|
2767
|
+
- nonce_expired
|
|
2768
|
+
- nonce_not_valid
|
|
2742
2769
|
|
|
2743
2770
|
FullContainerName:
|
|
2744
2771
|
container_id: ContainerSlotType
|
|
@@ -3122,6 +3149,9 @@ GraphicsOverrideParameterType: u8 =>
|
|
|
3122
3149
|
- flash_illuminance
|
|
3123
3150
|
- ambient_color
|
|
3124
3151
|
- ambient_illuminance
|
|
3152
|
+
- emissive_desaturation
|
|
3153
|
+
- sky_intensity
|
|
3154
|
+
- orbital_offset_degrees
|
|
3125
3155
|
|
|
3126
3156
|
DebugMarkerData:
|
|
3127
3157
|
text: string
|
|
@@ -3183,7 +3213,8 @@ Waypoint:
|
|
|
3183
3213
|
update_flags: lu32
|
|
3184
3214
|
visible?: bool
|
|
3185
3215
|
world_position?: WaypointWorldPosition
|
|
3186
|
-
|
|
3216
|
+
texture_path?: string
|
|
3217
|
+
icon_size?: vec2f
|
|
3187
3218
|
color?: li32
|
|
3188
3219
|
client_position_authority?: bool
|
|
3189
3220
|
actor_unique_id?: zigzag64
|
|
@@ -3260,3 +3291,70 @@ AttributeLayerData:
|
|
|
3260
3291
|
dimension_id: zigzag32
|
|
3261
3292
|
settings: AttributeLayerSettings
|
|
3262
3293
|
environment_attributes: EnvironmentAttributeData[]varint
|
|
3294
|
+
|
|
3295
|
+
EntityDiagnosticTimingInfo:
|
|
3296
|
+
display_name: string
|
|
3297
|
+
entity: string
|
|
3298
|
+
duration_nanos: lu64
|
|
3299
|
+
percent_of_total: u8
|
|
3300
|
+
|
|
3301
|
+
SystemDiagnosticTimingInfo:
|
|
3302
|
+
display_name: string
|
|
3303
|
+
system_index: lu64
|
|
3304
|
+
duration_nanos: lu64
|
|
3305
|
+
percent_of_total: u8
|
|
3306
|
+
|
|
3307
|
+
PrimitiveShape:
|
|
3308
|
+
network_id: varint64
|
|
3309
|
+
type?: u8 =>
|
|
3310
|
+
0: line
|
|
3311
|
+
1: box
|
|
3312
|
+
2: sphere
|
|
3313
|
+
3: circle
|
|
3314
|
+
4: text
|
|
3315
|
+
5: arrow
|
|
3316
|
+
location?: vec3f
|
|
3317
|
+
scale?: lf32
|
|
3318
|
+
rotation?: vec3f
|
|
3319
|
+
total_time_left?: lf32
|
|
3320
|
+
max_render_distance?: lf32
|
|
3321
|
+
color?: li32
|
|
3322
|
+
dimension_id?: zigzag32
|
|
3323
|
+
attached_to_entity_id?: zigzag64
|
|
3324
|
+
extra_shape_data: type ?
|
|
3325
|
+
if line: ShapeLine
|
|
3326
|
+
if box: ShapeBox
|
|
3327
|
+
if sphere: ShapeSphere
|
|
3328
|
+
if circle: ShapeCircle
|
|
3329
|
+
if text: ShapeText
|
|
3330
|
+
if arrow: ShapeArrow
|
|
3331
|
+
default: void
|
|
3332
|
+
|
|
3333
|
+
ShapeLine:
|
|
3334
|
+
end_location: vec3f
|
|
3335
|
+
|
|
3336
|
+
ShapeBox:
|
|
3337
|
+
box_bound: vec3f
|
|
3338
|
+
|
|
3339
|
+
ShapeSphere:
|
|
3340
|
+
segment_count?: u8
|
|
3341
|
+
|
|
3342
|
+
ShapeCircle:
|
|
3343
|
+
segment_count?: u8
|
|
3344
|
+
|
|
3345
|
+
ShapeText:
|
|
3346
|
+
text: string
|
|
3347
|
+
use_rotation?: bool
|
|
3348
|
+
background_color?: li32
|
|
3349
|
+
depth_test?: bool
|
|
3350
|
+
show_backface?: bool
|
|
3351
|
+
show_backface_text?: bool
|
|
3352
|
+
|
|
3353
|
+
ShapeArrow:
|
|
3354
|
+
end_location: vec3f
|
|
3355
|
+
arrow_head_length: lf32
|
|
3356
|
+
arrow_head_radius: lf32
|
|
3357
|
+
|
|
3358
|
+
PartyInfo:
|
|
3359
|
+
party_id: string
|
|
3360
|
+
party_leader: bool
|
|
@@ -2785,8 +2785,30 @@
|
|
|
2785
2785
|
"version": "bedrock/1.26.0",
|
|
2786
2786
|
"language": "bedrock/1.21.70"
|
|
2787
2787
|
},
|
|
2788
|
-
"26.10": {
|
|
2789
|
-
"blocks": "bedrock/1.
|
|
2788
|
+
"1.26.10": {
|
|
2789
|
+
"blocks": "bedrock/1.26.10",
|
|
2790
|
+
"blockStates": "bedrock/1.21.111",
|
|
2791
|
+
"blockCollisionShapes": "bedrock/1.21.111",
|
|
2792
|
+
"biomes": "bedrock/1.21.60",
|
|
2793
|
+
"entities": "bedrock/1.21.80",
|
|
2794
|
+
"items": "bedrock/1.21.111",
|
|
2795
|
+
"recipes": "bedrock/1.19.10",
|
|
2796
|
+
"instruments": "bedrock/1.17.0",
|
|
2797
|
+
"materials": "pc/1.17",
|
|
2798
|
+
"enchantments": "bedrock/1.19.1",
|
|
2799
|
+
"effects": "pc/1.17",
|
|
2800
|
+
"protocol": "bedrock/1.26.10",
|
|
2801
|
+
"windows": "bedrock/1.16.201",
|
|
2802
|
+
"steve": "bedrock/1.21.70",
|
|
2803
|
+
"blocksB2J": "bedrock/1.21.111",
|
|
2804
|
+
"blocksJ2B": "bedrock/1.21.111",
|
|
2805
|
+
"proto": "bedrock/1.26.10",
|
|
2806
|
+
"types": "bedrock/latest",
|
|
2807
|
+
"version": "bedrock/1.26.10",
|
|
2808
|
+
"language": "bedrock/1.21.70"
|
|
2809
|
+
},
|
|
2810
|
+
"1.26.20": {
|
|
2811
|
+
"blocks": "bedrock/1.26.10",
|
|
2790
2812
|
"blockStates": "bedrock/1.21.111",
|
|
2791
2813
|
"blockCollisionShapes": "bedrock/1.21.111",
|
|
2792
2814
|
"biomes": "bedrock/1.21.60",
|
|
@@ -2797,14 +2819,14 @@
|
|
|
2797
2819
|
"materials": "pc/1.17",
|
|
2798
2820
|
"enchantments": "bedrock/1.19.1",
|
|
2799
2821
|
"effects": "pc/1.17",
|
|
2800
|
-
"protocol": "bedrock/26.
|
|
2822
|
+
"protocol": "bedrock/1.26.20",
|
|
2801
2823
|
"windows": "bedrock/1.16.201",
|
|
2802
2824
|
"steve": "bedrock/1.21.70",
|
|
2803
2825
|
"blocksB2J": "bedrock/1.21.111",
|
|
2804
2826
|
"blocksJ2B": "bedrock/1.21.111",
|
|
2805
2827
|
"proto": "bedrock/latest",
|
|
2806
2828
|
"types": "bedrock/latest",
|
|
2807
|
-
"version": "bedrock/26.
|
|
2829
|
+
"version": "bedrock/1.26.20",
|
|
2808
2830
|
"language": "bedrock/1.21.70"
|
|
2809
2831
|
}
|
|
2810
2832
|
}
|
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"minecraftVersion": "26.2-snapshot-6",
|
|
4
|
+
"version": 1073742136,
|
|
5
|
+
"dataVersion": 4890,
|
|
6
|
+
"usesNetty": true,
|
|
7
|
+
"majorVersion": "26.2-snapshot-6",
|
|
8
|
+
"releaseType": "snapshot"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"minecraftVersion": "26.2-snapshot-5",
|
|
12
|
+
"version": 1073742135,
|
|
13
|
+
"dataVersion": 4889,
|
|
14
|
+
"usesNetty": true,
|
|
15
|
+
"majorVersion": "26.2-snapshot-5",
|
|
16
|
+
"releaseType": "snapshot"
|
|
17
|
+
},
|
|
2
18
|
{
|
|
3
19
|
"minecraftVersion": "26.2-snapshot-4",
|
|
4
20
|
"version": 1073742134,
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 3.110.1
|
|
2
|
+
* [bedrock: fix 1.26.20 parsing of ItemNew extra data (#1183)](https://github.com/PrismarineJS/minecraft-data/commit/a57d00f1f964443f82549869e5e7745e2329d306) (thanks @hax0r31337)
|
|
3
|
+
|
|
4
|
+
## 3.110.0
|
|
5
|
+
* [Add bedrock 1.26.20 protocol data (#1181)](https://github.com/PrismarineJS/minecraft-data/commit/a40d0f7607ad01d1e27e7736ef7f875c0b06c7b5) (thanks @extremeheat)
|
|
6
|
+
* [Add blocks.json for Bedrock 26.10 (#1170)](https://github.com/PrismarineJS/minecraft-data/commit/c8f384109682caf87e502b2ddd6ce969ce5afba5) (thanks @M9CHKO)
|
|
7
|
+
* [fix(bedrock/proto): mismatched field type in GatheringJoinInfo (#1180)](https://github.com/PrismarineJS/minecraft-data/commit/7b57b32c5b08a801ba217b2648a85811133ced9f) (thanks @hax0r31337)
|
|
8
|
+
* [Add 26.2-snapshot-6 to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/29db718980ecc17e9ab8651e9e4a36eb33bffbaf) (thanks @github-actions[bot])
|
|
9
|
+
* [Add 26.2-snapshot-5 to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/5afbbdd287a6c955d0c46c10fc6ddf1f46fc8c0b) (thanks @github-actions[bot])
|
|
10
|
+
|
|
1
11
|
## 3.109.1
|
|
2
12
|
* [pc: Fix attribute_modifiers structure in protocol.json for 1.21.5-1.21.11 (#1155)](https://github.com/PrismarineJS/minecraft-data/commit/82a071ee6e80cd3c86f87c808e366c60a5b58f59) (thanks @reallyoldfogie)
|
|
3
13
|
* [pc: SlotComponentType fixes for 1.21.5-1.21.11 (#1173)](https://github.com/PrismarineJS/minecraft-data/commit/fefacc72872f9c21273f0d2a9663cd34221efb6f) (thanks @reallyoldfogie)
|
package/package.json
CHANGED
|
File without changes
|