![]() |
VOOZH | about |
| Edition | Bedrock Edition | |||||
|---|---|---|---|---|---|---|
| Release date | March 11, 2025 | |||||
| Server version | 1.21.80.20 | |||||
| Editor version | 0.9.1 | |||||
| Build version | 31641019 | |||||
| Internal version | Windows, Xbox: 1.21.8020.0 Android: 1.21.80.20 | |||||
| Version code | Android: 952108020 (armeabi-v7a, 34) | |||||
| Type | Preview | |||||
| Preview for | 1.21.80 | |||||
| Downloads | Server Windows Linux | |||||
| Protocol version | 790 | |||||
| ||||||
{
"title": "Preview 1.21.80.20",
"images": [
"SummerDrop LocatorBar B.jpeg",
"Bedrock 1.21.80.20.png"
],
"rows": [
{
"field": "''(link to Bedrock Edition article, displayed as Bedrock Edition)''",
"label": "(link to Edition article, displayed as Edition)"
},
{
"field": "March 11, 2025",
"label": "Release date"
},
{
"field": "(link to Bedrock Dedicated Server 1.21.80.20 article, displayed as 1.21.80.20)",
"label": "Server version"
},
{
"field": "(link to Bedrock Editor 0.9.1 article, displayed as 0.9.1)",
"label": "''(link to Bedrock Editor article, displayed as Editor)'' version"
},
{
"field": "31641019",
"label": "Build version"
},
{
"field": "'''Windows, Xbox''': 1.21.8020.0<br>'''Android''': 1.21.80.20",
"label": "Internal version"
},
{
"field": "'''Android''':<br />\n952108020 (armeabi-v7a, 34)<br />\n962108020 (x86, 34)<br />\n972108020 (arm64-v8a, 34)<br />\n982108020 (x86_64, 34)",
"label": "Version code"
},
{
"field": "Preview",
"label": "(link to Version types article, displayed as Type)"
},
{
"field": "(link to Bedrock Edition 1.21.80 article, displayed as 1.21.80)",
"label": "Preview for"
},
{
"field": "'''Server'''<br>[https://www.minecraft.net/bedrockdedicatedserver/bin-win-preview/bedrock-server-1.21.80.20.zip Windows]<br>[https://www.minecraft.net/bedrockdedicatedserver/bin-linux-preview/bedrock-server-1.21.80.20.zip Linux]",
"label": "Downloads"
},
{
"field": "790",
"label": "(link to Protocol version article, displayed as Protocol version)"
}
],
"invimages": [],
"footer": "<table style=\"margin: auto; word-break: break-word;\">\n<tr style=\"background: inherit;\">\n<td style=\"padding: 0.4em\" rowspan=\"2\">[[Bedrock Edition 1.21.73|<span style=\"margin-right:-0.35em\">β</span>β 1.21.73]]</td>\n<td style=\"padding: 0.4em\">'''[[Bedrock Edition 1.21.80|1.21.80]]'''</td>\n<td style=\"padding: 0.4em\" >[[Bedrock Edition 1.21.81| 1.21.81 <span style=\"margin-right:-0.35em\">βΊ</span>βΊ]]</td>\n</tr>\n<tr style=\"background: inherit;\">\n\n<td style=\"padding: 0.4em\">''' Preview 1.21.80.20'''</td>\n<td style=\"padding: 0.4em\">\n[[Bedrock Edition Preview 1.21.80.21| Preview 1.21.80.21 βΊ]]\n</td>\n</tr>\n</table>"
}
Beta 1.21.80.20 (ChromeOS, Android) or Preview 1.21.80.20 (Windows, iOS, iPadOS, Xbox, PlayStation) is the first beta/Preview version for Bedrock Edition 1.21.80, released on March 11, 2025,[1] which adds the new Player Locator Bar and fixes bugs.
Components
minecraft:rideable component now has three new additional fields:
dismount_mode defines where riders are placed when dismounting the entity:
default, riders are placed on a valid ground position around the entity, or at the center of the entity's collision box if none is found.on_top_center, riders are placed at the center of the top of the entity's collision box.on_rider_enter_event, defines the event to execute on the owner entity when an entity starts riding it.on_rider_exit_event, defines the event to execute on the owner entity when an entity stops riding it.General
minecraft:water_appearance field surface_color to be optional. Added a content error that fires if the component is empty.Goals
minecraft:behavior.float_wander has been updated with new fields:
navigate_around_surface: enables the usage of a new algorithm to find random positions to navigate to. The new algorithm aims to find random positions in the vicinity of solid (i.e. non-air and non-liquid) blocks, and if that fails will fall back to finding a random position in the vicinity of the current dimension's surface level.additional_collision_buffer: makes sure there are no blocks present in an inflated area around the target position.allow_navigating_through_liquids: allow the mob to have target positions inside liquids.surface_xz_dist: the distance in the horizontal directions to look for nearby surfaces. Only valid when navigate_around_surface is true.surface_y_dist: the distance in the vertical directions to look for nearby surfaces. Only valid when navigate_around_surface is true.minecraft:behavior.follow_mob has been updated with the following new fields:
use_home_position_restriction: If true, the mob will respect the minecraft:home component's restriction_radius field when choosing a target to follow. If false, it will choose target position without considering home restrictions.preferred_actor_type: The type of actor to prefer following. If left unspecified, a random actor among those in range will be chosen.filters: If non-empty, provides criteria for filtering which nearby Mobs can be followed. If empty default criteria will be used, which will exclude players, squid variants, Fish variants, tadpoles, dolphins, and mobs of the same type as the owner of the goal.query.graphics_mode_is_any no longer requires the Upcoming Creator Features experiment.Network Protocol
ActorFlags::DOES_SERVER_AUTH_ONLY_DISMOUNT.These additions and changes are accessible by enabling the "Beta APIs" and "Locator Bar" experimental toggles.
API
@minecraft/server 2.0.0-betaEntityPushThroughComponent has been changed to read-only.resetHudElements method on ScreenDisplay has been renamed to resetHudElementsVisibility.ItemStack methods getComponent and getComponents will return ItemCustomComponentInstance for custom components registered with ItemComponentRegistry.ItemStack method hasComponent will return true for custom components registered with ItemComponentRegistry.@minecraft/server-ui 2.0.0-betaModalFormData.
dropdown.
defaultValueIndex?: number.dropdownOptions?: ModalFormDataDropdownOptions.slider.
valueStep: number,.defaultValue?: number.sliderOptions?: ModalFormDataSliderOptions.textField.
defaultValue?: minecraftserver.RawMessage string.textFieldOptions?: ModalFormDataTextFieldOptions.toggle.
defaultValue?: boolean.toggleOptions?: ModalFormDataToggleOptions.ModalFormDataDropdownOptions:exportinterfaceModalFormDataDropdownOptions{ defaultValueIndex?:number; tooltip?:minecraftserver.RawMessage|string; }
ModalFormDataSliderOptions:exportinterfaceModalFormDataSliderOptions{ defaultValue?:number; tooltip?:minecraftserver.RawMessage|string; valueStep?:number; }
ModalFormDataTextFieldOptions:exportinterfaceModalFormDataTextFieldOptions{ defaultValue?:string; tooltip?:minecraftserver.RawMessage|string; }
ModalFormDataToggleOptions:exportinterfaceModalFormDataToggleOptions{ defaultValue?:boolean; tooltip?:minecraftserver.RawMessage|string; }
Graphical
Technical Experimental
minecraft:nether_surface in the behavior pack biome file.From released versions before 1.21.80
Other
BlockPermutation::withState in outdated scripts that prevented some states from being set correctly on a number of blocks. Affected blocks include any which have had their directional or placement states recently changed. Scripts created after these blocks were changed may need to be updated to avoid unintended behavior.