Bedrock Edition Preview 1.21.80.27
Beta 1.21.80.27 (ChromeOS, Android) or Preview 1.21.80.27 (Windows, iOS, iPadOS, Xbox, PlayStation) is the fifth beta/Preview version for Bedrock Edition 1.21.80, released on April 8, 2025,[1] which fixes bugs.
Preview 1.21.80.27
Edition | |||||||
---|---|---|---|---|---|---|---|
Release date |
April 8, 2025 | ||||||
Server version | |||||||
Editor version | |||||||
Build version |
32353441 | ||||||
Internal version |
Windows, Xbox: 1.21.8027.0 | ||||||
Version code |
Android: | ||||||
Type |
Preview | ||||||
Preview for | |||||||
Downloads | |||||||
Protocol version |
800 | ||||||
|
{ "title": "Preview 1.21.80.27", "images": [ "Bedrock 1.21.80.27 PatchNotes.jpeg", "Bedrock 1.21.80.27.png" ], "rows": [ { "field": "''(link to Bedrock Edition article, displayed as Bedrock Edition)''", "label": "(link to Edition article, displayed as Edition)" }, { "field": "April 8, 2025", "label": "Release date" }, { "field": "(link to Bedrock Dedicated Server 1.21.80.27 article, displayed as 1.21.80.27)", "label": "Server version" }, { "field": "(link to Bedrock Editor 0.9.5 article, displayed as 0.9.5)", "label": "(link to Bedrock Editor article, displayed as Editor) version" }, { "field": "32353441", "label": "Build version" }, { "field": "'''Windows, Xbox''': 1.21.8027.0<br>'''Android''': 1.21.80.27", "label": "Internal version" }, { "field": "<small>'''Android''':<br />\n952108027 (armeabi-v7a, 34)<br />\n962108027 (x86, 34)<br />\n972108027 (arm64-v8a, 34)<br />\n982108027 (x86_64, 34)</small>", "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.27.zip Windows]<br>[https://www.minecraft.net/bedrockdedicatedserver/bin-linux-preview/bedrock-server-1.21.80.27.zip Linux]", "label": "Downloads" }, { "field": "800", "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\" >[[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\" ></td>\n</tr>\n<tr style=\"background: inherit;\">\n<td style=\"padding: 0.4em\">\n[[Bedrock Edition Preview 1.21.80.25|◄ Preview 1.21.80.25]]\n</td>\n<td style=\"padding: 0.4em\">''' Preview 1.21.80.27'''</td>\n<td style=\"padding: 0.4em\">\n[[Bedrock Edition Preview 1.21.80.28| Preview 1.21.80.28 ►]]\n</td>\n</tr>\n</table>" }
Changes Edit
Items Edit
- Changed Elytra so that while gliding, using a firework will only be used as a boost even if placed on a block.
General Edit
- Enabled Filter Profanity toggle on Xbox and Nintendo platforms.
World generation Edit
- Trail ruins generate at the same location in Old Growth Birch Forests between Java and Bedrock on the same world seed.
Technical Edit
@minecraft/server 1.19.0
- Moved methods
StructureManager.placeJigsaw
andStructureManager.placeJigsawStructure
frombeta
to1.19.0
. - Moved interface
JigsawPlaceOptions
frombeta
to1.19.0
. - Moved interface
JigsawStructurePlaceOptions
frombeta
to1.19.0
. - Moved error class
PlaceJigsawError
frombeta
to1.19.0
.
Components
- Content errors will log missing entity references in the
minecraft:entity_placer
andminecraft:projectile
item components.
Experimental Edit
These additions and changes are accessible by enabling the "Beta APIs", "Upcoming Creator Features", "Custom biomes" and "Experimental Creator Camera Features" experimental toggles.
Additions Edit
Command format Edit
- Added the
/controlscheme
command for switching control schemes when the Experimental Creator Camera toggle is enabled.
Technical Edit
- New field
condition
added to the culling rules schema. It provides more control over which neighbor blocks will trigger a face or part to be culled.- The supported values are
default
,same_culling_layer
,same_block
andsame_block_permutation
.default
will pass the condition if the neighbor block is full and opaque.- All conditions are an extension of
default
, meaning a full and opaque neighbor will always be a passing condition, before the extendedsame_*
condition is checked.
- All conditions are an extension of
same_culling_layer
will pass the condition if the neighbor block shares the sameculling_layer
as the block being occluded, defined in the geometry component.- If either of the culling layers being compared is
minecraft:culling_layer.undefined
, the condition will never pass.
- If either of the culling layers being compared is
same_block
will pass the condition if the neighbor block has the same identifier.same_block_permutation
will pass the condition if the neighbor block has the same identifier and is the exact same permutation.
- Additionally, the feature is currently only usable behind the "upcoming creator features" toggle.
- The supported values are
- New field
culling_layer
added to the block's geometry component. It allows different blocks to be grouped together when using thesame_culling_layer
condition in a culling rules file.- When using the
minecraft
namespace, the only allowed culling layer identifiers are:minecraft:culling_layer.undefined
orminecraft:culling_layer.leaves
. - Additionally, the feature is currently only usable behind the "upcoming creator features" toggle.
- When using the
- Added
minecraft:replace_biomes
component to allow for custom biomes to replace portions of vanilla biomes. To use, add to custom biome files in behavior packs.
Changes Edit
Technical Edit
@minecraft/server 2.0.0-beta
- Coroutines (promises) are now flushed in early execution to allow async imports to interact with early execution APIs like Custom Components and Custom Commands.
- Added support for custom command enums.
- Added
Enum
type toCustomCommandParamType
. spawnEntity
method ofDimension
no longer supports using a spawn event inside theidentifier
parameter.SpawnEntityOptions
interface now has an optional string memberspawnEvent?: string
for specifying a spawn event to be sent to the entity when it is spawned. Please update any existing usages of spawn events insideidentifier
to instead use this newspawnEvent
option. For examplespawnEntity("minecraft:horse<minecraft:ageable_grow_up>", {x:0, y:0, z:0})
should becomespawnEntity("minecraft:horse", {x:0, y:0, z:0}, {spawnEvent: 'minecraft:ageable_grow_up'})
EntityGroundOffsetComponent
has been removed.Block
methodgetComponent
will returnBlockCustomComponentInstance
for custom components registered withBlockComponentRegistry
in2.0.0
.
@minecraft/server-ui 2.0.0-beta
- Class
ModalFormResponse
.- Changed type for
formValues
property from(boolean
number
string)[] to (boolean
number
string
undefined)[]
.- New Signature:
formValues?: (boolean
number
string
undefined)[]
. - Old Signature:
formValues?: (boolean
number
string)[]
.
- New Signature:
formValues
array now contains entries for all the elements provided by the request. It means that labels, headers, and dividers are considered into the response with anundefined
value.
- Changed type for
Graphical
- Re-enabled local exposure on all platforms in Vibrant Visuals mode.
Fixes Edit
From released versions before 1.21.80
- MCPE-132021 – Candles don't accept PBR Textures
- MCPE-191193 – Evoker's legs don't move
- MCPE-191595 – Can't take off with elytra while targeting a block
- MCPE-194677 – Dead Bush & Sand ambient sounds don't work at all
From the previous development version
- MCPE-194008 – Basalt does not always generate from lava on soul soil next to blue ice
Other
- Stained glass now renders with correct colors when using Vibrant Visuals.
- Bundle UI now correctly disappears when interacting with Inventory tabs in Pocket UI.
- Fixed a bug where the game would be unresponsive for a short while after leaving the bed screen.
- Fixed isotropic textures in
minecraft:material_instances
being squashed and stretched for non-square face.
Video Edit
- Updates for Creators (Preview 1.21.80.27)
References Edit
- ↑ "Minecraft Beta & Preview - 1.21.80.27" – Minecraft Feedback, April 8, 2025.