minecraft-data 3.98.0 → 3.99.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.
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 844,
3
+ "minecraftVersion": "1.21.111",
4
+ "majorVersion": "1.21",
5
+ "releaseType": "release"
6
+ }
@@ -1,4 +1,10 @@
1
1
  [
2
+ {
3
+ "version": 844,
4
+ "minecraftVersion": "1.21.111",
5
+ "majorVersion": "1.21",
6
+ "releaseType": "release"
7
+ },
2
8
  {
3
9
  "version": 827,
4
10
  "minecraftVersion": "1.21.100",
@@ -44,5 +44,6 @@
44
44
  "1.21.80",
45
45
  "1.21.90",
46
46
  "1.21.93",
47
- "1.21.100"
47
+ "1.21.100",
48
+ "1.21.111"
48
49
  ]
@@ -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: 1.21.100
4
+ !version: 1.21.111
5
5
 
6
6
  # Some ProtoDef aliases
7
7
  string: ["pstring",{"countType":"varint"}] # String / array types
@@ -340,7 +340,7 @@ packet_start_game:
340
340
  # Defines game rules currently active with their respective values. The value of these game
341
341
  # rules may be either 'bool', 'Int32' or 'Float32'. Some game rules are server side only,
342
342
  # and don't necessarily need to be sent to the client.
343
- gamerules: GameRules
343
+ gamerules: GameRuleVarint[]varint
344
344
  experiments: Experiments
345
345
  experiments_previously_used: bool
346
346
  # Specifies if the world had the bonus map setting enabled when generating it.
@@ -724,6 +724,7 @@ packet_level_sound_event_old:
724
724
  is_baby_mob: bool
725
725
  is_global: bool
726
726
 
727
+ # TODO: Check and verify old versions
727
728
  packet_level_event:
728
729
  !id: 0x19
729
730
  !bound: client
@@ -835,6 +836,13 @@ packet_level_event:
835
836
  3613: particle_trial_spawner_ejecting
836
837
  3614: particle_wind_explosion
837
838
  3615: particle_wolf_armor_break
839
+ 3616: ominous_item_spawner
840
+ 3617: creaking_crumble
841
+ 3618: pale_oak_leaves
842
+ 3619: eyeblossom_open
843
+ 3620: eyeblossom_close
844
+ 3621: green_flame
845
+ #
838
846
  4000: set_data
839
847
  9800: players_sleeping
840
848
  9801: sleeping_players
@@ -1679,7 +1687,7 @@ packet_chunk_radius_update:
1679
1687
  packet_game_rules_changed:
1680
1688
  !id: 0x48
1681
1689
  !bound: client
1682
- rules: GameRules
1690
+ rules: GameRuleI32[]varint
1683
1691
 
1684
1692
  # Camera is sent by the server to use an Education Edition camera on a player. It produces an image
1685
1693
  # client-side.
@@ -3320,33 +3328,16 @@ packet_item_stack_response:
3320
3328
  packet_player_armor_damage:
3321
3329
  !id: 0x95
3322
3330
  !bound: client
3323
- # Bitset holds a bitset of 4 bits that indicate which pieces of armour need to have damage dealt to them.
3324
- # The first bit, when toggled, is for a helmet, the second for the chestplate, the third for the leggings
3325
- # and the fourth for boots.
3326
- type: ArmorDamageType
3327
- helmet_damage: type.head ?
3328
- if true: zigzag32
3329
- chestplate_damage: type.chest ?
3330
- if true: zigzag32
3331
- leggings_damage: type.legs ?
3332
- if true: zigzag32
3333
- boots_damage: type.feet ?
3334
- if true: zigzag32
3335
- body_damage: type.body ?
3336
- if true: zigzag32
3337
-
3338
- ArmorDamageType: [ "bitflags",
3339
- {
3340
- "type": "u8",
3341
- "flags": {
3342
- "head": 0b1,
3343
- "chest": 0b10,
3344
- "legs": 0b100,
3345
- "feet": 0b1000,
3346
- "body": 0b10000
3347
- }
3348
- }
3349
- ]
3331
+ entries: ArmorDamageEntry[]varint
3332
+
3333
+ ArmorDamageEntry:
3334
+ armor_slot: u8 =>
3335
+ 0: helmet
3336
+ 1: chestplate
3337
+ 2: leggings
3338
+ 3: boots
3339
+ 4: body
3340
+ damage: li16
3350
3341
 
3351
3342
  # CodeBuilder is an Education Edition packet sent by the server to the client to open the URL to a Code
3352
3343
  # Builder (websocket) server.
@@ -4571,3 +4562,19 @@ packet_server_script_debug_drawer:
4571
4562
  arrow_head_length?: lf32
4572
4563
  arrow_head_radius?: lf32
4573
4564
  segment_count?: u8
4565
+
4566
+ # ServerBoundPackSettingChange
4567
+ packet_serverbound_pack_setting_change:
4568
+ !id: 0x149
4569
+ !bound: server
4570
+ pack_id: uuid
4571
+ pack_setting:
4572
+ name: string
4573
+ type: u8 =>
4574
+ - float
4575
+ - bool
4576
+ - string
4577
+ value: type ?
4578
+ if float: lf32
4579
+ if bool: bool
4580
+ if string: string
@@ -39,19 +39,29 @@ GameMode: zigzag32 =>
39
39
  5: fallback
40
40
  6: spectator
41
41
 
42
- GameRule:
43
- name: string
44
- editable: bool
45
- type: varint =>
46
- 1: bool
47
- 2: int
48
- 3: float
49
- value: type?
50
- if bool: bool
51
- if int: zigzag32
52
- if float: lf32
53
-
54
- GameRules: GameRule[]varint
42
+ GameRuleI32:
43
+ name: string
44
+ editable: bool
45
+ type: varint =>
46
+ 1: bool
47
+ 2: int
48
+ 3: float
49
+ value: type?
50
+ if bool: bool
51
+ if int: li32
52
+ if float: lf32
53
+
54
+ GameRuleVarint:
55
+ name: string
56
+ editable: bool
57
+ type: varint =>
58
+ 1: bool
59
+ 2: int
60
+ 3: float
61
+ value: type?
62
+ if bool: bool
63
+ if int: varint
64
+ if float: lf32
55
65
 
56
66
  # CacheBlob represents a blob as used in the client side blob cache protocol. It holds a hash of its data and
57
67
  # the full data of it.
@@ -478,7 +488,8 @@ MetadataFlags2: [ "bitflags", {
478
488
  "collidable",
479
489
  "wasd_air_controlled",
480
490
  "does_server_auth_only_dismount",
481
- "body_rotation_always_follows_head"
491
+ "body_rotation_always_follows_head",
492
+ "can_use_vertical_movement_action"
482
493
  ]
483
494
  }]
484
495
 
@@ -548,6 +559,7 @@ TransactionUseItem:
548
559
  # Block breaking like left click. When using server auth block breaking as specified in StartGamePacket this is never sent.
549
560
  # Instead, block actions are supplied in Player Auth Input.
550
561
  2: break_block
562
+ 3: attack
551
563
  # TriggerType is the type of the trigger that caused the inventory transaction. It is one of the trigger
552
564
  # types found in the constants above. If TriggerType is TriggerTypePlayerInput, the transaction is from
553
565
  # the initial input of the player. If it is TriggerTypeSimulationTick, the transaction is from a simulation
@@ -1650,7 +1662,7 @@ SoundType: varint =>
1650
1662
  - Land
1651
1663
  - Saddle
1652
1664
  - Armor
1653
- - MobArmorStandPlace
1665
+ - ArmorStandPlace
1654
1666
  - AddChest
1655
1667
  - Throw
1656
1668
  - Attack
@@ -1673,7 +1685,7 @@ SoundType: varint =>
1673
1685
  - LargeBlast
1674
1686
  - Twinkle
1675
1687
  - Remedy
1676
- - Infect
1688
+ - Unfect
1677
1689
  - LevelUp
1678
1690
  - BowHit
1679
1691
  - BulletHit
@@ -1990,51 +2002,51 @@ SoundType: varint =>
1990
2002
  - Listening
1991
2003
  - Heartbeat
1992
2004
  - HornBreak
1993
- - SculkPlace
2005
+ - _
1994
2006
  - SculkSpread
1995
2007
  - SculkCharge
1996
2008
  - SculkSensorPlace
1997
2009
  - SculkShriekerPlace
1998
- - goat_call_0
1999
- - goat_call_1
2000
- - goat_call_2
2001
- - goat_call_3
2002
- - goat_call_4
2003
- - goat_call_5
2004
- - goat_call_6
2005
- - goat_call_7
2006
- - goat_call_8
2007
- - goat_call_9
2008
- - goat_harmony_0
2009
- - goat_harmony_1
2010
- - goat_harmony_2
2011
- - goat_harmony_3
2012
- - goat_harmony_4
2013
- - goat_harmony_5
2014
- - goat_harmony_6
2015
- - goat_harmony_7
2016
- - goat_harmony_8
2017
- - goat_harmony_9
2018
- - goat_melody_0
2019
- - goat_melody_1
2020
- - goat_melody_2
2021
- - goat_melody_3
2022
- - goat_melody_4
2023
- - goat_melody_5
2024
- - goat_melody_6
2025
- - goat_melody_7
2026
- - goat_melody_8
2027
- - goat_melody_9
2028
- - goat_bass_0
2029
- - goat_bass_1
2030
- - goat_bass_2
2031
- - goat_bass_3
2032
- - goat_bass_4
2033
- - goat_bass_5
2034
- - goat_bass_6
2035
- - goat_bass_7
2036
- - goat_bass_8
2037
- - goat_bass_9
2010
+ - GoatCall0
2011
+ - GoatCall1
2012
+ - GoatCall2
2013
+ - GoatCall3
2014
+ - GoatCall4
2015
+ - GoatCall5
2016
+ - GoatCall6
2017
+ - GoatCall7
2018
+ - GoatCall8
2019
+ - GoatCall9
2020
+ - GoatHarmony0
2021
+ - GoatHarmony1
2022
+ - GoatHarmony2
2023
+ - GoatHarmony3
2024
+ - GoatHarmony4
2025
+ - GoatHarmony5
2026
+ - GoatHarmony6
2027
+ - GoatHarmony7
2028
+ - GoatHarmony8
2029
+ - GoatHarmony9
2030
+ - GoatMelody0
2031
+ - GoatMelody1
2032
+ - GoatMelody2
2033
+ - GoatMelody3
2034
+ - GoatMelody4
2035
+ - GoatMelody5
2036
+ - GoatMelody6
2037
+ - GoatMelody7
2038
+ - GoatMelody8
2039
+ - GoatMelody9
2040
+ - GoatBass0
2041
+ - GoatBass1
2042
+ - GoatBass2
2043
+ - GoatBass3
2044
+ - GoatBass4
2045
+ - GoatBass5
2046
+ - GoatBass6
2047
+ - GoatBass7
2048
+ - GoatBass8
2049
+ - GoatBass9
2038
2050
  - _
2039
2051
  - _
2040
2052
  - _
@@ -2089,89 +2101,95 @@ SoundType: varint =>
2089
2101
  - HoglinZombified
2090
2102
  - AmbientUnderwaterEnter
2091
2103
  - AmbientUnderwaterExit
2092
- - bottle_fill
2093
- - bottle_empty
2094
- - crafter_craft
2095
- - crafter_fail
2096
- - block_decorated_pot_insert
2097
- - block_decorated_pot_insert_fail
2098
- - crafter_disable_slot
2099
- - trial_spawner_open_shutter
2100
- - trial_spawner_eject_item
2101
- - trial_spawner_detect_player
2102
- - trial_spawner_spawn_mob
2103
- - trial_spawner_close_shutter
2104
- - trial_spawner_ambient
2105
- - block_copper_bulb_turn_on
2106
- - block_copper_bulb_turn_off
2107
- - ambient_in_air
2108
- - breeze_wind_charge_burst
2109
- - imitate_breeze
2110
- - mob_armadillo_brush
2111
- - mob_armadillo_scute_drop
2112
- - armor_equip_wolf
2113
- - armor_unequip_wolf
2114
- - reflect
2115
- - vault_open_shutter
2116
- - vault_close_shutter
2117
- - vault_eject_item
2118
- - vault_insert_item
2119
- - vault_insert_item_fail
2120
- - vault_ambient
2121
- - vault_activate
2122
- - vault_deactivate
2123
- - hurt_reduced
2124
- - wind_charge_burst
2125
- - imitate_drowned
2126
- - imitate_creaking
2127
- - bundle_insert_failed
2128
- - sponge_absorb
2104
+ - BottleFill
2105
+ - BottleEmpty
2106
+ - CrafterCraft
2107
+ - CrafterFail
2108
+ - DecoratedPotInsert
2109
+ - DecoratedPotInsertFail
2110
+ - CrafterDisableSlot
2111
+ - TrialSpawnerOpenShutter
2112
+ - TrialSpawnerEjectItem
2113
+ - TrialSpawnerDetectPlayer
2114
+ - TrialSpawnerSpawnMob
2115
+ - TrialSpawnerCloseShutter
2116
+ - TrialSpawnerAmbient
2117
+ - CopperBulbTurnOn
2118
+ - CopperBulbTurnOff
2119
+ - AmbientInAir
2120
+ - BreezeWindChargeBurst
2121
+ - ImitateBreeze
2122
+ - ArmadilloBrush
2123
+ - ArmadilloScuteDrop
2124
+ - EquipWolf
2125
+ - UnequipWolf
2126
+ - Reflect
2127
+ - VaultOpenShutter
2128
+ - VaultCloseShutter
2129
+ - VaultEjectItem
2130
+ - VaultInsertItem
2131
+ - VaultInsertItemFail
2132
+ - VaultAmbient
2133
+ - VaultActivate
2134
+ - VaultDeactive
2135
+ - HurtReduced
2136
+ - WindChargeBurst
2137
+ - ImitateBogged
2138
+ - WolfArmourCrack
2139
+ - WolfArmourBreak
2140
+ - WolfArmourRepair
2141
+ - MaceSmashAir
2142
+ - MaceSmashGround
2143
+ - TrialSpawnerChargeActivate
2144
+ - TrialSpawnerAmbientOminous
2145
+ - OminiousItemSpawnerSpawnItem
2146
+ - OminousBottleEndUse
2147
+ - MaceHeavySmashGround
2148
+ - OminousItemSpawnerSpawnItemBegin
2129
2149
  - _
2130
- - block_creaking_heart_trail
2131
- - creaking_heart_spawn
2132
- - activate
2133
- - deactivate
2134
- - freeze
2135
- - unfreeze
2136
- - open
2137
- - open_long
2138
- - close
2139
- - close_long
2140
- - imitate_phantom
2141
- - imitate_zoglin
2142
- - imitate_guardian
2143
- - imitate_ravager
2144
- - imitate_pillager
2145
- - place_in_water
2146
- - state_change
2147
- - imitate_happy_ghast
2148
- - unique_generic
2149
- - record_tears
2150
- - the_end_light_flash
2151
- - lead_leash
2152
- - lead_unleash
2153
- - lead_break
2154
- - unsaddle
2155
- - equip_copper
2156
- - armor_crack_wolf
2157
- - armor_break_wolf
2158
- - armor_repair_wolf
2159
- - mace_smash_air
2160
- - mace_smash_ground
2161
- - trail_spawner_charge_activate
2162
- - trail_spawner_ambient_ominous
2163
- - ominous_item_spawner_spawn_item
2164
- - ominous_bottle_end_use
2165
- - mace_smash_heavy_ground
2166
- - ominous_item_spawner_spawn_item_begin
2150
+ - ApplyEffectBadOmen
2151
+ - ApplyEffectRaidOmen
2152
+ - ApplyEffectTrialOmen
2153
+ - OminousItemSpawnerAboutToSpawnItem
2154
+ - RecordCreator
2155
+ - RecordCreatorMusicBox
2156
+ - RecordPrecipice
2157
+ - VaultRejectRewardedPlayer
2158
+ - ImitateDrowned
2159
+ - ImitateCreaking
2160
+ - BundleInsertFailed
2161
+ - SpongeAbsorb
2167
2162
  - _
2168
- - apply_effect_bad_omen
2169
- - apply_effect_raid_omen
2170
- - apply_effect_trial_omen
2171
- - ominous_item_spawner_about_to_spawn_item
2172
- - record_creator
2173
- - record_creator_music_box
2174
- - record_precipice
2163
+ - BlockCreakingHeartTrail
2164
+ - CreakingHeartSpawn
2165
+ - Activate
2166
+ - Deactivate
2167
+ - Freeze
2168
+ - Unfreeze
2169
+ - Open
2170
+ - OpenLong
2171
+ - Close
2172
+ - CloseLong
2173
+ - ImitatePhantom
2174
+ - ImitateZoglin
2175
+ - ImitateGuardian
2176
+ - ImitateRavager
2177
+ - ImitatePillager
2178
+ - PlaceInWater
2179
+ - StateChange
2180
+ - ImitateHappyGhast
2181
+ - UniqueGeneric
2182
+ - RecordTears
2183
+ - TheEndLightFlash
2184
+ - LeadLeash
2185
+ - LeadUnleash
2186
+ - LeadBreak
2187
+ - Unsaddle
2188
+ - EquipCopper
2189
+ - RecordLavaChicken
2190
+ - PlaceItem
2191
+ - SingleItemSwap
2192
+ - MultiItemSwap
2175
2193
 
2176
2194
  # TODO: remove?
2177
2195
  LegacyEntityType: li32 =>
@@ -2542,14 +2560,8 @@ BiomeDefinition:
2542
2560
  temperature: lf32
2543
2561
  # Downfall is the amount that precipitation affects colours and block changes.
2544
2562
  downfall: lf32
2545
- # RedSporeDensity is the density of red spore precipitation visuals.
2546
- red_spore_density: lf32
2547
- # BlueSporeDensity is the density of blue spore precipitation visuals.
2548
- blue_spore_density: lf32
2549
- # AshDensity is the density of ash precipitation visuals.
2550
- ash_density: lf32
2551
- # WhiteAshDensity is the density of white ash precipitation visuals.
2552
- white_ash_density: lf32
2563
+ # Changes leaves turning white in snow
2564
+ snow_foliage: lf32
2553
2565
  # Depth ...
2554
2566
  depth: lf32
2555
2567
  # Scale ...
@@ -2578,6 +2590,8 @@ BiomeChunkGeneration:
2578
2590
  surface_material_adjustments?: BiomeElementData[]varint
2579
2591
  # SurfaceMaterials is a set of materials to use for the surface layers of the biome.
2580
2592
  surface_materials?: BiomeSurfaceMaterial
2593
+ # HasDefaultOverworldSurface is true if the biome has a default overworld surface.
2594
+ has_default_overworld_surface?: bool
2581
2595
  # HasSwampSurface is true if the biome has a swamp surface.
2582
2596
  has_swamp_surface: bool
2583
2597
  # HasFrozenOceanSurface is true if the biome has a frozen ocean surface.
@@ -2602,14 +2616,6 @@ BiomeClimate:
2602
2616
  temperature: lf32
2603
2617
  # Downfall is the amount that precipitation affects colours and block changes.
2604
2618
  downfall: lf32
2605
- # RedSporeDensity is the density of red spore precipitation visuals.
2606
- red_spore_density: lf32
2607
- # BlueSporeDensity is the density of blue spore precipitation visuals.
2608
- blue_spore_density: lf32
2609
- # AshDensity is the density of ash precipitation visuals.
2610
- ash_density: lf32
2611
- # WhiteAshDensity is the density of white ash precipitation visuals.
2612
- white_ash_density: lf32
2613
2619
  # SnowAccumulationMin is the minimum amount of snow that can accumulate in the biome, every 0.125 is
2614
2620
  # another layer of snow.
2615
2621
  snow_accumulation_min: lf32
@@ -2520,7 +2520,7 @@
2520
2520
  "effects": "pc/1.17",
2521
2521
  "protocol": "bedrock/1.21.80",
2522
2522
  "windows": "bedrock/1.16.201",
2523
- "steve": "bedrock/1.21.50",
2523
+ "steve": "bedrock/1.21.70",
2524
2524
  "blocksB2J": "bedrock/1.21.80",
2525
2525
  "blocksJ2B": "bedrock/1.21.80",
2526
2526
  "proto": "bedrock/1.21.80",
@@ -2542,7 +2542,7 @@
2542
2542
  "effects": "pc/1.17",
2543
2543
  "protocol": "bedrock/1.21.90",
2544
2544
  "windows": "bedrock/1.16.201",
2545
- "steve": "bedrock/1.21.50",
2545
+ "steve": "bedrock/1.21.70",
2546
2546
  "blocksB2J": "bedrock/1.21.80",
2547
2547
  "blocksJ2B": "bedrock/1.21.80",
2548
2548
  "proto": "bedrock/1.21.90",
@@ -2564,7 +2564,7 @@
2564
2564
  "effects": "pc/1.17",
2565
2565
  "protocol": "bedrock/1.21.93",
2566
2566
  "windows": "bedrock/1.16.201",
2567
- "steve": "bedrock/1.21.50",
2567
+ "steve": "bedrock/1.21.70",
2568
2568
  "blocksB2J": "bedrock/1.21.80",
2569
2569
  "blocksJ2B": "bedrock/1.21.80",
2570
2570
  "proto": "bedrock/1.21.93",
@@ -2586,13 +2586,35 @@
2586
2586
  "effects": "pc/1.17",
2587
2587
  "protocol": "bedrock/1.21.100",
2588
2588
  "windows": "bedrock/1.16.201",
2589
- "steve": "bedrock/1.21.50",
2589
+ "steve": "bedrock/1.21.70",
2590
2590
  "blocksB2J": "bedrock/1.21.80",
2591
2591
  "blocksJ2B": "bedrock/1.21.80",
2592
- "proto": "bedrock/latest",
2592
+ "proto": "bedrock/1.21.100",
2593
2593
  "types": "bedrock/latest",
2594
2594
  "version": "bedrock/1.21.100",
2595
2595
  "language": "bedrock/1.21.70"
2596
+ },
2597
+ "1.21.111": {
2598
+ "blocks": "bedrock/1.21.90",
2599
+ "blockStates": "bedrock/1.21.80",
2600
+ "blockCollisionShapes": "bedrock/1.21.90",
2601
+ "biomes": "bedrock/1.21.60",
2602
+ "entities": "bedrock/1.21.80",
2603
+ "items": "bedrock/1.21.90",
2604
+ "recipes": "bedrock/1.19.10",
2605
+ "instruments": "bedrock/1.17.0",
2606
+ "materials": "pc/1.17",
2607
+ "enchantments": "bedrock/1.19.1",
2608
+ "effects": "pc/1.17",
2609
+ "protocol": "bedrock/1.21.111",
2610
+ "windows": "bedrock/1.16.201",
2611
+ "steve": "bedrock/1.21.70",
2612
+ "blocksB2J": "bedrock/1.21.80",
2613
+ "blocksJ2B": "bedrock/1.21.80",
2614
+ "proto": "bedrock/latest",
2615
+ "types": "bedrock/latest",
2616
+ "version": "bedrock/1.21.111",
2617
+ "language": "bedrock/1.21.70"
2596
2618
  }
2597
2619
  }
2598
2620
  }
@@ -1,4 +1,60 @@
1
1
  [
2
+ {
3
+ "minecraftVersion": "1.21.9",
4
+ "version": 773,
5
+ "dataVersion": 4554,
6
+ "usesNetty": true,
7
+ "majorVersion": "1.21",
8
+ "releaseType": "release"
9
+ },
10
+ {
11
+ "minecraftVersion": "1.21.9-rc1",
12
+ "version": 1073742097,
13
+ "dataVersion": 4553,
14
+ "usesNetty": true,
15
+ "majorVersion": "1.21",
16
+ "releaseType": "snapshot"
17
+ },
18
+ {
19
+ "minecraftVersion": "1.21.9-pre4",
20
+ "version": 1073742096,
21
+ "dataVersion": 4552,
22
+ "usesNetty": true,
23
+ "majorVersion": "1.21",
24
+ "releaseType": "snapshot"
25
+ },
26
+ {
27
+ "minecraftVersion": "1.21.9-pre3",
28
+ "version": 1073742095,
29
+ "dataVersion": 4551,
30
+ "usesNetty": true,
31
+ "majorVersion": "1.21",
32
+ "releaseType": "snapshot"
33
+ },
34
+ {
35
+ "minecraftVersion": "1.21.9-pre2",
36
+ "version": 1073742094,
37
+ "dataVersion": 4550,
38
+ "usesNetty": true,
39
+ "majorVersion": "1.21",
40
+ "releaseType": "snapshot"
41
+ },
42
+ {
43
+ "minecraftVersion": "1.21.9-pre1",
44
+ "version": 1073742093,
45
+ "dataVersion": 4549,
46
+ "usesNetty": true,
47
+ "majorVersion": "1.21",
48
+ "releaseType": "snapshot"
49
+ },
50
+ {
51
+ "minecraftVersion": "25w37a",
52
+ "version": 1073742092,
53
+ "dataVersion": 4547,
54
+ "usesNetty": true,
55
+ "majorVersion": "1.21",
56
+ "releaseType": "snapshot"
57
+ },
2
58
  {
3
59
  "minecraftVersion": "25w36b",
4
60
  "version": 1073742091,
@@ -1,3 +1,11 @@
1
+ ## 3.99.1
2
+ * [Fix bedrock 1.21.111 protocol version](https://github.com/PrismarineJS/minecraft-data/commit/c471c4b65e3bfc205ae47f2586aed6c2b226932b) (thanks @extremeheat)
3
+
4
+ ## 3.99.0
5
+ * [Add bedrock 1.21.111 protocol data (#1091)](https://github.com/PrismarineJS/minecraft-data/commit/9006e979f31c246107e44180fc18024db152cf70) (thanks @extremeheat)
6
+ * [bedrock: fix steve skin paths in 1.21.70+ (#1084)](https://github.com/PrismarineJS/minecraft-data/commit/449328e7fec760765e4ffa6a9400b9b153a95b62) (thanks @thejfkvis)
7
+ * [Add to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/362b990c64251fec3be3c823b0a2f27fae05f7d4) (thanks @github-actions[bot])
8
+
1
9
  ## 3.98.0
2
10
  * [🎈 Pc1.21.8 (#1070)](https://github.com/PrismarineJS/minecraft-data/commit/7bfe410e80c5332074de6726dec8df6ad8c80ae1) (thanks @extremeheat)
3
11
  * [Add 25w36b to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/fdd13b6a4bd46a7a9de1c5de8a7cb7abf715960f) (thanks @github-actions[bot])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.98.0",
3
+ "version": "3.99.1",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",