minecraft-data 3.109.1 → 3.110.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 +26 -4
- package/doc/history.md +4 -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 +16680 -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 +104 -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 +7 -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,19 @@ 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_data: ByteArray
|
|
144
|
+
|
|
132
145
|
# An "ItemStack" here represents an Item instance. You can think about it like a pointer
|
|
133
146
|
# to an item class. The data for the class gets updated with the data in the `item` field
|
|
134
147
|
# As of 1.16.220, now functionally the same as `Item` just without an extra boolean when
|
|
@@ -333,6 +346,8 @@ MetadataDictionary: []varint
|
|
|
333
346
|
139: arrow_shooter_id
|
|
334
347
|
140: firework_direction
|
|
335
348
|
141: firework_shooter_id
|
|
349
|
+
142: reserved_139
|
|
350
|
+
143: nameplate_render_distance_max
|
|
336
351
|
type: varint =>
|
|
337
352
|
0: byte
|
|
338
353
|
1: short
|
|
@@ -496,7 +511,10 @@ MetadataFlags2: [ "bitflags", {
|
|
|
496
511
|
"does_server_auth_only_dismount",
|
|
497
512
|
"body_rotation_always_follows_head",
|
|
498
513
|
"can_use_vertical_movement_action",
|
|
499
|
-
"rotation_locked_to_vehicle"
|
|
514
|
+
"rotation_locked_to_vehicle",
|
|
515
|
+
"uses_legacy_friction",
|
|
516
|
+
"uses_uniform_air_drag",
|
|
517
|
+
"nameplate_depth_tested"
|
|
500
518
|
]
|
|
501
519
|
}]
|
|
502
520
|
|
|
@@ -783,10 +801,10 @@ Recipes: []varint
|
|
|
783
801
|
type: zigzag32 =>
|
|
784
802
|
0: shapeless #'ENTRY_SHAPELESS',
|
|
785
803
|
1: shaped #'ENTRY_SHAPED',
|
|
786
|
-
2: furnace # 'ENTRY_FURNACE',
|
|
804
|
+
2: furnace # 'ENTRY_FURNACE', # removed 1.26.20
|
|
787
805
|
# `furnace_with_metadata` is a recipe specifically used for furnace-type crafting stations. It is equal to
|
|
788
806
|
# `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',
|
|
807
|
+
3: furnace_with_metadata # 'ENTRY_FURNACE_DATA', # removed 1.26.20
|
|
790
808
|
4: multi #'ENTRY_MULTI', //TODO
|
|
791
809
|
5: shulker_box #'ENTRY_SHULKER_BOX', //TODO
|
|
792
810
|
6: shapeless_chemistry #'ENTRY_SHAPELESS_CHEMISTRY', //TODO
|
|
@@ -819,11 +837,11 @@ Recipes: []varint
|
|
|
819
837
|
assume_symmetry: bool
|
|
820
838
|
unlocking_requirement: RecipeUnlockingRequirement
|
|
821
839
|
network_id: varint
|
|
822
|
-
if furnace:
|
|
840
|
+
if furnace: # removed 1.26.20
|
|
823
841
|
input_id: zigzag32
|
|
824
842
|
output: ItemLegacy
|
|
825
843
|
block: string
|
|
826
|
-
if furnace_with_metadata:
|
|
844
|
+
if furnace_with_metadata: # removed 1.26.20
|
|
827
845
|
input_id: zigzag32
|
|
828
846
|
input_meta: zigzag32
|
|
829
847
|
output: ItemLegacy
|
|
@@ -937,7 +955,7 @@ Enchant:
|
|
|
937
955
|
level: u8
|
|
938
956
|
|
|
939
957
|
EnchantOption:
|
|
940
|
-
cost:
|
|
958
|
+
cost: u8
|
|
941
959
|
slot_flags: li32
|
|
942
960
|
equip_enchants: Enchant[]varint
|
|
943
961
|
held_enchants: Enchant[]varint
|
|
@@ -2193,6 +2211,8 @@ SoundType: varint =>
|
|
|
2193
2211
|
- ItemNetheriteSpearUse
|
|
2194
2212
|
- PauseGrowth
|
|
2195
2213
|
- ResetGrowth
|
|
2214
|
+
- PushedByPlayer
|
|
2215
|
+
- Bounce
|
|
2196
2216
|
|
|
2197
2217
|
# TODO: remove?
|
|
2198
2218
|
LegacyEntityType: li32 =>
|
|
@@ -2584,8 +2604,8 @@ GatheringJoinInfo:
|
|
|
2584
2604
|
experience_world_id: uuid
|
|
2585
2605
|
experience_world_name: string
|
|
2586
2606
|
creator_id: string
|
|
2587
|
-
|
|
2588
|
-
|
|
2607
|
+
target_id: uuid
|
|
2608
|
+
scenario_id: string
|
|
2589
2609
|
server_id: string
|
|
2590
2610
|
|
|
2591
2611
|
StoreEntryPointInfo:
|
|
@@ -2739,6 +2759,10 @@ DisconnectFailReason: zigzag32 =>
|
|
|
2739
2759
|
- editor_mismatch_editor_to_vanilla
|
|
2740
2760
|
- editor_mismatch_vanilla_to_editor
|
|
2741
2761
|
- deny_listed
|
|
2762
|
+
- nonce_missing
|
|
2763
|
+
- nonce_not_found
|
|
2764
|
+
- nonce_expired
|
|
2765
|
+
- nonce_not_valid
|
|
2742
2766
|
|
|
2743
2767
|
FullContainerName:
|
|
2744
2768
|
container_id: ContainerSlotType
|
|
@@ -3122,6 +3146,9 @@ GraphicsOverrideParameterType: u8 =>
|
|
|
3122
3146
|
- flash_illuminance
|
|
3123
3147
|
- ambient_color
|
|
3124
3148
|
- ambient_illuminance
|
|
3149
|
+
- emissive_desaturation
|
|
3150
|
+
- sky_intensity
|
|
3151
|
+
- orbital_offset_degrees
|
|
3125
3152
|
|
|
3126
3153
|
DebugMarkerData:
|
|
3127
3154
|
text: string
|
|
@@ -3183,7 +3210,8 @@ Waypoint:
|
|
|
3183
3210
|
update_flags: lu32
|
|
3184
3211
|
visible?: bool
|
|
3185
3212
|
world_position?: WaypointWorldPosition
|
|
3186
|
-
|
|
3213
|
+
texture_path?: string
|
|
3214
|
+
icon_size?: vec2f
|
|
3187
3215
|
color?: li32
|
|
3188
3216
|
client_position_authority?: bool
|
|
3189
3217
|
actor_unique_id?: zigzag64
|
|
@@ -3260,3 +3288,70 @@ AttributeLayerData:
|
|
|
3260
3288
|
dimension_id: zigzag32
|
|
3261
3289
|
settings: AttributeLayerSettings
|
|
3262
3290
|
environment_attributes: EnvironmentAttributeData[]varint
|
|
3291
|
+
|
|
3292
|
+
EntityDiagnosticTimingInfo:
|
|
3293
|
+
display_name: string
|
|
3294
|
+
entity: string
|
|
3295
|
+
duration_nanos: lu64
|
|
3296
|
+
percent_of_total: u8
|
|
3297
|
+
|
|
3298
|
+
SystemDiagnosticTimingInfo:
|
|
3299
|
+
display_name: string
|
|
3300
|
+
system_index: lu64
|
|
3301
|
+
duration_nanos: lu64
|
|
3302
|
+
percent_of_total: u8
|
|
3303
|
+
|
|
3304
|
+
PrimitiveShape:
|
|
3305
|
+
network_id: varint64
|
|
3306
|
+
type?: u8 =>
|
|
3307
|
+
0: line
|
|
3308
|
+
1: box
|
|
3309
|
+
2: sphere
|
|
3310
|
+
3: circle
|
|
3311
|
+
4: text
|
|
3312
|
+
5: arrow
|
|
3313
|
+
location?: vec3f
|
|
3314
|
+
scale?: lf32
|
|
3315
|
+
rotation?: vec3f
|
|
3316
|
+
total_time_left?: lf32
|
|
3317
|
+
max_render_distance?: lf32
|
|
3318
|
+
color?: li32
|
|
3319
|
+
dimension_id?: zigzag32
|
|
3320
|
+
attached_to_entity_id?: zigzag64
|
|
3321
|
+
extra_shape_data: type ?
|
|
3322
|
+
if line: ShapeLine
|
|
3323
|
+
if box: ShapeBox
|
|
3324
|
+
if sphere: ShapeSphere
|
|
3325
|
+
if circle: ShapeCircle
|
|
3326
|
+
if text: ShapeText
|
|
3327
|
+
if arrow: ShapeArrow
|
|
3328
|
+
default: void
|
|
3329
|
+
|
|
3330
|
+
ShapeLine:
|
|
3331
|
+
end_location: vec3f
|
|
3332
|
+
|
|
3333
|
+
ShapeBox:
|
|
3334
|
+
box_bound: vec3f
|
|
3335
|
+
|
|
3336
|
+
ShapeSphere:
|
|
3337
|
+
segment_count?: u8
|
|
3338
|
+
|
|
3339
|
+
ShapeCircle:
|
|
3340
|
+
segment_count?: u8
|
|
3341
|
+
|
|
3342
|
+
ShapeText:
|
|
3343
|
+
text: string
|
|
3344
|
+
use_rotation?: bool
|
|
3345
|
+
background_color?: li32
|
|
3346
|
+
depth_test?: bool
|
|
3347
|
+
show_backface?: bool
|
|
3348
|
+
show_backface_text?: bool
|
|
3349
|
+
|
|
3350
|
+
ShapeArrow:
|
|
3351
|
+
end_location: vec3f
|
|
3352
|
+
arrow_head_length: lf32
|
|
3353
|
+
arrow_head_radius: lf32
|
|
3354
|
+
|
|
3355
|
+
PartyInfo:
|
|
3356
|
+
party_id: string
|
|
3357
|
+
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,10 @@
|
|
|
1
|
+
## 3.110.0
|
|
2
|
+
* [Add bedrock 1.26.20 protocol data (#1181)](https://github.com/PrismarineJS/minecraft-data/commit/a40d0f7607ad01d1e27e7736ef7f875c0b06c7b5) (thanks @extremeheat)
|
|
3
|
+
* [Add blocks.json for Bedrock 26.10 (#1170)](https://github.com/PrismarineJS/minecraft-data/commit/c8f384109682caf87e502b2ddd6ce969ce5afba5) (thanks @M9CHKO)
|
|
4
|
+
* [fix(bedrock/proto): mismatched field type in GatheringJoinInfo (#1180)](https://github.com/PrismarineJS/minecraft-data/commit/7b57b32c5b08a801ba217b2648a85811133ced9f) (thanks @hax0r31337)
|
|
5
|
+
* [Add 26.2-snapshot-6 to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/29db718980ecc17e9ab8651e9e4a36eb33bffbaf) (thanks @github-actions[bot])
|
|
6
|
+
* [Add 26.2-snapshot-5 to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/5afbbdd287a6c955d0c46c10fc6ddf1f46fc8c0b) (thanks @github-actions[bot])
|
|
7
|
+
|
|
1
8
|
## 3.109.1
|
|
2
9
|
* [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
10
|
* [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
|