Minecraft:Bedrock Edition Preview 1.21.80.22: Difference between revisions
More actions
Fix template calls: add MC/ prefix |
Sync: updated from Minecraft |
||
| Line 21: | Line 21: | ||
| nextparent = 1.21.81 | | nextparent = 1.21.81 | ||
}}<onlyinclude> | }}<onlyinclude> | ||
'''Beta 1.21.80.22''' (ChromeOS, Android) or '''Preview 1.21.80.22''' (Windows, iOS, iPadOS, Xbox, PlayStation) is the third beta/''Preview'' version for [[Minecraft:Bedrock Edition 1.21.80]], released on March 26, 2025,<ref>{{cite|url=https://feedback.minecraft.net/hc/en-us/articles/35325653515149-Minecraft-Beta-Preview-1-21-80-22|title=Minecraft Beta & Preview - 1.21.80.22|website=Minecraft Feedback|date=March 26, 2025}}</ref> which adds flat world presets, and fixes bugs. | '''Beta 1.21.80.22''' (ChromeOS, Android) or '''Preview 1.21.80.22''' (Windows, iOS, iPadOS, Xbox, PlayStation) is the third beta/''Preview'' version for [[Minecraft:Bedrock Edition 1.21.80]], released on March 26, 2025,<ref>{{cite|url=https://feedback.minecraft.net/hc/en-us/articles/35325653515149-Minecraft-Beta-Preview-1-21-80-22|title=Minecraft Beta & Preview - 1.21.80.22|website=Minecraft Feedback|date=March 26, 2025}}</ref> which adds [[Minecraft:flat]] world presets, and fixes bugs. | ||
== Additions == | == Additions == | ||
=== General === | === General === | ||
'''Flat world presets''' | '''[[Minecraft:Flat]] world presets''' | ||
*It is now possible to select a flat world preset in the Advanced tab of the create new world screen when flat world mode has been enabled. | *It is now possible to select a flat world preset in the Advanced tab of the [[Minecraft:Create New World|create new world]] screen when flat world mode has been enabled. | ||
*Player can now have more variety in your flat worlds with the following presets: | *Player can now have more variety in your flat worlds with the following presets: | ||
**Classic Flat (The classic flat world) | **Classic Flat (The classic flat world) | ||
| Line 45: | Line 45: | ||
=== Technical === | === Technical === | ||
'''Block Components''' | '''Block Components''' | ||
*Removed Upcoming Creator Features experiment requirement for field {{ | *Removed Upcoming Creator Features experiment requirement for field {{cd|isotropic}} in {{cd|minecraft:material_instances}} component. | ||
'''[[Minecraft:Block]]s''' | '''[[Minecraft:Block]]s''' | ||
*From 1.21.80 onward, when using a {{ | *From 1.21.80 onward, when using a {{cd|minecraft:geometry}} component or {{cd|minecraft:material_instances}} component, you must include both. | ||
'''[[Minecraft:Commands]]''' | '''[[Minecraft:Commands]]''' | ||
*Released {{ | *Released {{cmd|place structure}} and {{cmd|place jigsaw}} out of the Data-Driven Jigsaw Structures experiment. | ||
'''Components''' | '''Components''' | ||
*Added validation for block asset references in components. | *Added validation for block asset references in components. | ||
**Content errors will log missing block references for the following components: | **Content errors will log missing block references for the following components: | ||
***item component {{ | ***item component {{cd|minecraft:digger}} | ||
***item component {{ | ***item component {{cd|minecraft:entity_placer}} | ||
***item component {{ | ***item component {{cd|minecraft:block_placer}} | ||
***spawn rules component {{ | ***spawn rules component {{cd|minecraft:spawns_on_block_filter}} | ||
***spawn rules component {{ | ***spawn rules component {{cd|minecraft:spawns_on_block_prevented_filter}} | ||
***spawn rules component {{ | ***spawn rules component {{cd|minecraft:spawns_above_block_filter}} | ||
**{{ | **{{cd|can_be_stolen}} has been moved from {{cd|presets}} back to being a direct sub-field of the {{cd|minecraft:leashable}} component. | ||
'''Documentation''' | '''Documentation''' | ||
*Include {{ | *Include {{cd|biome}} and {{cd|client_biome}} JSON files in generated documentation. | ||
'''Goals''' | '''Goals''' | ||
*Added fields to {{ | *Added fields to {{cd|minecraft:behavior.tempt}} goal: | ||
**The {{ | **The {{cd|stop_distance}} field specifies a custom distance for when the tempted mob should stop moving towards the player. | ||
**The {{ | **The {{cd|on_start}} field specifies the event to trigger when the goal starts. | ||
**The {{ | **The {{cd|on_end}} field specifies the event to trigger when the goal ends. | ||
*Added {{ | *Added {{cd|minecraft:behavior.float_tempt}} goal, which allows a tempted mob to move in a line towards the player: | ||
**This goal is a variant of the {{ | **This goal is a variant of the {{cd|minecraft:behavior.tempt}} goal and shares the same fields | ||
**Requires the mob to be in a floating state (e.g. use the {{ | **Requires the mob to be in a floating state (e.g. use the {{cd|minecraft:navigation.float}} component) | ||
'''[[Minecraft:Structure]]s''' | '''[[Minecraft:Structure]]s''' | ||
*Exposed new fields to data driven jigsaw structures: {{ | *Exposed new fields to data driven jigsaw structures: {{cd|start_height}}, {{cd|dimensional_padding}}, {{cd|pool_aliases}}, {{cd|max_distance_from_center}} | ||
*Made {{ | *Made {{cd|height_map_projection}} optional and changed {{cd|anchor}} to {{cd|start_jigsaw_name}} | ||
== Experimental == | == Experimental == | ||
| Line 86: | Line 86: | ||
==== Technical ==== | ==== Technical ==== | ||
'''API''' | '''API''' | ||
:{{ | :{{cd|@minecraft/server 2.0.0-beta}} | ||
*{{ | *{{cd|EntitySkinIdComponent}} has been changed to read-only in version {{cd|2.0 beta}} | ||
*Added property {{ | *Added property {{cd|localizationKey}} to {{cd|Entity}}, {{cd|Block}}, and {{cd|ItemStack}} which returns the key used for finding the localized names of these objects. | ||
:Added new Container APIs: | :Added new Container APIs: | ||
*{{ | *{{cd|contains(ItemStack)}}: Attempts to find an instance of an item inside the container. | ||
*{{ | *{{cd|firstEmptySlot()}}: Finds the index of the first empty slot inside the container. | ||
*{{ | *{{cd|irstItem()}}: Finds the index of the first item inside the container. | ||
*{{ | *{{cd|find(ItemStack)}}: Find the index of the first instance of an item inside the container. | ||
*{{ | *{{cd|reverseFind(ItemStack)}}: Find the index of the last instance of an item inside the container. | ||
:Custom Commands | :Custom Commands | ||
*Added support for custom commands authored in script. The new {{ | *Added support for custom commands authored in script. The new {{cd|CustomCommandRegistry}} is provided when listening to {{cd|ModuleStartupEvent}}. | ||
**Additional types added: | **Additional types added: | ||
***{{ | ***{{cd|CustomCommandRegistry}} | ||
***{{ | ***{{cd|CustomCommandPermissionLevel}} | ||
***{{ | ***{{cd|CustomCommandParamType}} | ||
***{{ | ***{{cd|CustomCommandResult}} and {{cd|CustomCommandStatus}} | ||
***{{ | ***{{cd|CustomCommandParameter}} | ||
=== Changes === | === Changes === | ||
==== Gameplay ==== | ==== Gameplay ==== | ||
'''Player locator bar''' | '''[[Minecraft:Player locator bar]]''' | ||
*Dots are now shown representing players in spectator mode to other players also in spectator mode on the locator bar. | *Dots are now shown representing players in spectator mode to other players also in spectator mode on the locator bar. | ||
| Line 114: | Line 114: | ||
== Fixes == | == Fixes == | ||
{{ | {{fixes|project=MCPE|fixedin=1.21.80.22 Preview | ||
|;old | |;old | ||
|136864|Deepslate Redstone Ore doesn't turn off | |136864|Deepslate Redstone Ore doesn't turn off | ||
| Line 130: | Line 130: | ||
*Fixed a crash when clicking several times while trying to upload a world to an inactive Realm slot. | *Fixed a crash when clicking several times while trying to upload a world to an inactive Realm slot. | ||
*Fixed an issue that caused a crash while generating chunks. | *Fixed an issue that caused a crash while generating chunks. | ||
*Fixed an issue which prevented the {{ | *Fixed an issue which prevented the {{keys|Esc}} keyboard shortcut from working in certain scenarios on the death screen. | ||
*Bundle slot selection using gamepad right stick no longer skips slots when playing in splitscreen. | *Bundle slot selection using gamepad right stick no longer skips slots when playing in splitscreen. | ||
*Stacks are now correctly splitting across slots when moving cursor and holding the left mouse button to split a stack evenly across slots. | *Stacks are now correctly splitting across slots when moving cursor and holding the left mouse button to split a stack evenly across slots. | ||
| Line 137: | Line 137: | ||
== References == | == References == | ||
{{ | {{reflist}} | ||
== Navigation == | == Navigation == | ||
{{ | {{Navbox Bedrock Edition versions|1.2x}} | ||
[[ | [[Minecraft:de:Bedrock Edition beta 1.21.80.22]] | ||
[[Minecraft:ja:Bedrock Edition Preview 1.21.80.22]] | |||
de:Bedrock Edition beta 1.21.80.22 | [[Minecraft:pt:Edição Bedrock Preview 1.21.80.22]] | ||
ja:Bedrock Edition Preview 1.21.80.22 | [[Minecraft:ru:Preview 1.21.80.22 (Bedrock Edition)]] | ||
pt:Edição Bedrock Preview 1.21.80.22 | [[Minecraft:uk:Preview 1.21.80.22 (Bedrock Edition)]] | ||
ru:Preview 1.21.80.22 (Bedrock Edition) | [[Minecraft:zh:基岩版1.21.80.22]] | ||
uk:Preview 1.21.80.22 (Bedrock Edition) | |||
zh:基岩版1.21.80.22 | |||
Latest revision as of 11:05, 25 May 2026
Template:Infobox version Beta 1.21.80.22 (ChromeOS, Android) or Preview 1.21.80.22 (Windows, iOS, iPadOS, Xbox, PlayStation) is the third beta/Preview version for Minecraft:Bedrock Edition 1.21.80, released on March 26, 2025,<ref>Template:Cite</ref> which adds Minecraft:flat world presets, and fixes bugs.
Additions
General
Minecraft:Flat world presets
- It is now possible to select a flat world preset in the Advanced tab of the create new world screen when flat world mode has been enabled.
- Player can now have more variety in your flat worlds with the following presets:
- Classic Flat (The classic flat world)
- Tunnelers' Dream
- Water World (an endless ocean)
- Overworld
- Snowy Kingdom
- Bottomless Pit
- Desert
- Redstone Ready (flat sandstone)
Changes
General
UI
- Updated the friends drawer status to tell if a friend is playing in the same world as a player.
Technical
Block Components
- Removed Upcoming Creator Features experiment requirement for field Template:Cd in Template:Cd component.
- From 1.21.80 onward, when using a Template:Cd component or Template:Cd component, you must include both.
- Released Template:Cmd and Template:Cmd out of the Data-Driven Jigsaw Structures experiment.
Components
- Added validation for block asset references in components.
- Content errors will log missing block references for the following components:
- item component Template:Cd
- item component Template:Cd
- item component Template:Cd
- spawn rules component Template:Cd
- spawn rules component Template:Cd
- spawn rules component Template:Cd
- Template:Cd has been moved from Template:Cd back to being a direct sub-field of the Template:Cd component.
- Content errors will log missing block references for the following components:
Documentation
- Include Template:Cd and Template:Cd JSON files in generated documentation.
Goals
- Added fields to Template:Cd goal:
- The Template:Cd field specifies a custom distance for when the tempted mob should stop moving towards the player.
- The Template:Cd field specifies the event to trigger when the goal starts.
- The Template:Cd field specifies the event to trigger when the goal ends.
- Added Template:Cd goal, which allows a tempted mob to move in a line towards the player:
- This goal is a variant of the Template:Cd goal and shares the same fields
- Requires the mob to be in a floating state (e.g. use the Template:Cd component)
- Exposed new fields to data driven jigsaw structures: Template:Cd, Template:Cd, Template:Cd, Template:Cd
- Made Template:Cd optional and changed Template:Cd to Template:Cd
Experimental
These additions and changes are accessible by enabling the "Beta APIs" and "Locator Bar" experimental toggles.
Additions
Technical
API
- Template:Cd has been changed to read-only in version Template:Cd
- Added property Template:Cd to Template:Cd, Template:Cd, and Template:Cd which returns the key used for finding the localized names of these objects.
- Added new Container APIs:
- Template:Cd: Attempts to find an instance of an item inside the container.
- Template:Cd: Finds the index of the first empty slot inside the container.
- Template:Cd: Finds the index of the first item inside the container.
- Template:Cd: Find the index of the first instance of an item inside the container.
- Template:Cd: Find the index of the last instance of an item inside the container.
- Custom Commands
- Added support for custom commands authored in script. The new Template:Cd is provided when listening to Template:Cd.
- Additional types added:
Changes
Gameplay
- Dots are now shown representing players in spectator mode to other players also in spectator mode on the locator bar.
Technical
Graphical
- Disabled split screen for the Deferred Technical Preview. Deferred/Ray Tracing modes are not available in the video menu during split screen sessions, and starting a split screen session while in one of these modes will force the game back to Fancy mode.
Fixes
Template:Fixes Other
- Fixed an issue where Text To Speech wasn't working on Android Fire Tablet devices.
- Fixed an issue where the player would momentarily lay under or beside a Bed when going to sleep.
- Fixed a crash when clicking several times while trying to upload a world to an inactive Realm slot.
- Fixed an issue that caused a crash while generating chunks.
- Fixed an issue which prevented the Template:Keys keyboard shortcut from working in certain scenarios on the death screen.
- Bundle slot selection using gamepad right stick no longer skips slots when playing in splitscreen.
- Stacks are now correctly splitting across slots when moving cursor and holding the left mouse button to split a stack evenly across slots.
- Fixed a bug where worlds set to Creative would be created with cheats turned on.
- Fixed an issue with Android GPU identification causing Deferred Technical Preview to be disabled on certain supported devices.
References
Template:Navbox Bedrock Edition versions
Minecraft:de:Bedrock Edition beta 1.21.80.22 Minecraft:ja:Bedrock Edition Preview 1.21.80.22 Minecraft:pt:Edição Bedrock Preview 1.21.80.22 Minecraft:ru:Preview 1.21.80.22 (Bedrock Edition) Minecraft:uk:Preview 1.21.80.22 (Bedrock Edition) Minecraft:zh:基岩版1.21.80.22