Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Minecraft:Bedrock Edition Preview 1.21.70.25: Difference between revisions

From SAS Gaming Wiki
SyncBot (talk | contribs)
Fix template calls: add MC/ prefix
SyncBot (talk | contribs)
Sync: updated from Minecraft
 
Line 30: Line 30:


=== Mobs ===
=== Mobs ===
'''Sheep'''
'''[[Minecraft:Sheep]]'''
*Reverted the change from [[Minecraft:Bedrock Edition Preview 1.21.70.23|Preview 1.21.70.23]] that allowed blue, light blue, cyan, yellow, orange and red sheep to spawn naturally in different biomes.
*Reverted the change from [[Minecraft:Bedrock Edition Preview 1.21.70.23|Preview 1.21.70.23]] that allowed blue, light blue, cyan, yellow, orange and red sheep to spawn naturally in different biomes.
*Black sheep will still be the most common type to spawn in cold biomes, and brown Sheep will be the most common type in warm biomes.
*Black sheep will still be the most common type to spawn in cold biomes, and brown Sheep will be the most common type in warm biomes.
Line 36: Line 36:
*Sheep wool texture has been tweaked to remove stark line at the back.
*Sheep wool texture has been tweaked to remove stark line at the back.


'''Wandering Trader'''
'''[[Minecraft:Wandering Trader]]'''
*Wandering traders' buying trades can now be used twice before they lock instead of only once.
*Wandering traders' buying trades can now be used twice before they lock instead of only once.


=== Gameplay ===
=== Gameplay ===
'''Achievements'''
'''[[Minecraft:Achievements]]'''
*Enabled earning achievements while playing in a world with [[Minecraft:add-on]]s applied.
*Enabled earning achievements while playing in a world with [[Minecraft:add-on]]s applied.


Line 47: Line 47:
*Enabled Filter Profanity toggle on mobile platforms.
*Enabled Filter Profanity toggle on mobile platforms.


'''UI'''
'''[[Minecraft:UI]]'''
*Touch controls: camera perspective can now be changed from a HUD button., enable this in the touch settings.
*Touch controls: camera perspective can now be changed from a HUD button., enable this in the touch settings.


Line 53: Line 53:
'''[[Minecraft:Biome]]s'''
'''[[Minecraft:Biome]]s'''
:Client Biome Components
:Client Biome Components
*Add {{MC/Cd|minecraft:dry_foliage_color}} component to override color for {{MC/Cd|dry_foliage}} tint method.
*Add {{cd|minecraft:dry_foliage_color}} component to override color for {{cd|dry_foliage}} tint method.


'''[[Minecraft:Block]]s'''
'''[[Minecraft:Block]]s'''
*Add {{MC/Cd|dry_foliage}} tint method which uses the {{MC/Cd|textures/colormap/dry_foliage.png}} color map.
*Add {{cd|dry_foliage}} tint method which uses the {{cd|textures/colormap/dry_foliage.png}} color map.
*Exposed the block component {{MC/Cd|minecraft:destruction_particles}} as a JSON object. This represents the particles used when the block is destroyed.
*Exposed the block component {{cd|minecraft:destruction_particles}} as a JSON object. This represents the particles used when the block is destroyed.
**There is two fields for it:
**There is two fields for it:
***{{MC/Cd|texture}} is a required string field to set the texture used by the particles.
***{{cd|texture}} is a required string field to set the texture used by the particles.
***{{MC/Cd|tint_method}} is an optional string field that multiplies the texture color with a predefined tint. Default to {{MC/Cd|none}}. Supported values are {{MC/Cd|none}}, {{MC/Cd|default_foliage}}, {{MC/Cd|birch_foliage}}, {{MC/Cd|evergreen_foliage}}, {{MC/Cd|dry_foliage}}, {{MC/Cd|grass}} and {{MC/Cd|water}}.
***{{cd|tint_method}} is an optional string field that multiplies the texture color with a predefined tint. Default to {{cd|none}}. Supported values are {{cd|none}}, {{cd|default_foliage}}, {{cd|birch_foliage}}, {{cd|evergreen_foliage}}, {{cd|dry_foliage}}, {{cd|grass}} and {{cd|water}}.
**Block format before 1.21.70 will be upgraded to have the component added using the texture from the {{MC/Cd|down}} or {{MC/Cd|*}} of the {{MC/Cd|minecraft:material_instances}} component if present and {{MC/Cd|none}} for {{MC/Cd|tint_method}}. This was the old behavior.
**Block format before 1.21.70 will be upgraded to have the component added using the texture from the {{cd|down}} or {{cd|*}} of the {{cd|minecraft:material_instances}} component if present and {{cd|none}} for {{cd|tint_method}}. This was the old behavior.
**Block format from 1.21.70 without the component will not be upgraded and uses the invalid texture. Examples:
**Block format from 1.21.70 without the component will not be upgraded and uses the invalid texture. Examples:
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 77: Line 77:


'''[[Minecraft:Commands]]'''
'''[[Minecraft:Commands]]'''
*Removed {{MC/Cd|set_movement_authority}} command.
*Removed {{cd|set_movement_authority}} command.


'''Dedicated Server'''
'''[[Minecraft:Dedicated Server]]'''
*Exposed a new parameter for dedicated server. This will make the server more strict on entity interactions. Look in {{MC/Cd|[[Minecraft:server.properties]]}} for more information on what these do.
*Exposed a new parameter for dedicated server. This will make the server more strict on entity interactions. Look in {{cd|[[Minecraft:server.properties]]}} for more information on what these do.
**{{MC/Cd|server-authoritative-entity-interactions-strict}} default to {{MC/Cd|false}} and can be set to {{MC/Cd|true}}. Will affect entity interaction acceptance.
**{{cd|server-authoritative-entity-interactions-strict}} default to {{cd|false}} and can be set to {{cd|true}}. Will affect entity interaction acceptance.
*Removed {{MC/Cd|server-authoritative-movement}} parameter. It will now always use {{MC/Cd|server-auth-with-rewind}}.
*Removed {{cd|server-authoritative-movement}} parameter. It will now always use {{cd|server-auth-with-rewind}}.


'''General'''
'''General'''
*Server Authoritative movement is now turned on by default.
*Server Authoritative movement is now turned on by default.


'''Particles'''
'''[[Minecraft:Particles]]'''
*Multiple controllers transitioning out of a state at the same time will now properly expire all intended particles instead of just the last one.
*Multiple controllers transitioning out of a state at the same time will now properly expire all intended particles instead of just the last one.


Line 95: Line 95:
==== Technical ====
==== Technical ====
'''API'''
'''API'''
*{{MC/Cd|BlockMapColorComponent}} scripting API is now read-only.
*{{cd|BlockMapColorComponent}} scripting API is now read-only.
*{{MC/Cd|BlockMapColorComponent}} scripting API fields {{MC/Cd|color}} and {{MC/Cd|tintMethod}} are now properties instead of methods.
*{{cd|BlockMapColorComponent}} scripting API fields {{cd|color}} and {{cd|tintMethod}} are now properties instead of methods.
*Deprecated {{MC/Cd|ItemUseOnBeforeEvent}} in {{MC/Cd|@minecraft/server 2.0.0-beta}}. Use {{MC/Cd|PlayerInteractWithBlockBeforeEvent}} instead.
*Deprecated {{cd|ItemUseOnBeforeEvent}} in {{cd|@minecraft/server 2.0.0-beta}}. Use {{cd|PlayerInteractWithBlockBeforeEvent}} instead.
*Deprecated {{MC/Cd|ItemUseOnAfterEvent}} in {{MC/Cd|@minecraft/server 2.0.0-beta}}. Use {{MC/Cd|PlayerInteractWithBlockAfterEvent}} instead.
*Deprecated {{cd|ItemUseOnAfterEvent}} in {{cd|@minecraft/server 2.0.0-beta}}. Use {{cd|PlayerInteractWithBlockAfterEvent}} instead.
*{{MC/Cd|BlockDestructionParticlesComponent}} API has been added to {{MC/Cd|@minecraft/server 2.0.0-beta}}.
*{{cd|BlockDestructionParticlesComponent}} API has been added to {{cd|@minecraft/server 2.0.0-beta}}.
*{{MC/Cd|EntityScaleComponent}} has been changed to read-only in version {{MC/Cd|2.0.0-beta}}.
*{{cd|EntityScaleComponent}} has been changed to read-only in version {{cd|2.0.0-beta}}.


'''Graphical'''
'''Graphical'''
Line 108: Line 108:


== Fixes ==
== Fixes ==
{{MC/Fixes|project=MCPE|fixedin=1.21.70.25 Preview
{{fixes|project=MCPE|fixedin=1.21.70.25 Preview
|;old
|;old
|189501|Attacking a mob while sprint jumping randomly removes all of the player's momentum, sometimes even teleporting the player backwards
|189501|Attacking a mob while sprint jumping randomly removes all of the player's momentum, sometimes even teleporting the player backwards
Line 134: Line 134:
*Fixed an issue which prevented some users from accessing the Create New World screen in iOS Preview and PlayStation Preview.
*Fixed an issue which prevented some users from accessing the Create New World screen in iOS Preview and PlayStation Preview.
*Empty bell blocks no longer crash the game when moved by a sticky piston.
*Empty bell blocks no longer crash the game when moved by a sticky piston.
*Fixed a bug where {{MC/Cmd|fill}}, {{MC/Cmd|clear}} and {{MC/Cmd|testforblock}} commands would recognize IDs of some flattened blocks as block group names and affect all variants under those groups.
*Fixed a bug where {{cmd|fill}}, {{cmd|clear}} and {{cmd|testforblock}} commands would recognize IDs of some flattened blocks as block group names and affect all variants under those groups.
*Fixed an issue that occurs when cancelling world resource pack download.
*Fixed an issue that occurs when cancelling world resource pack download.
*Fixed a crash that occurs when initializing {{MC/Cd|minecraft:decorated_pot}} renderer.
*Fixed a crash that occurs when initializing {{cd|minecraft:decorated_pot}} renderer.
*Fixed mirroring and rotation of crafter blocks when part of a structure that is being placed.
*Fixed mirroring and rotation of crafter blocks when part of a structure that is being placed.
*Fixed an issue where native constructors were not properly checking privileges when being called. Constructors now check privileges properly and produce correct errors when being used in Early Execution privilege.</onlyinclude>
*Fixed an issue where native constructors were not properly checking privileges when being called. Constructors now check privileges properly and produce correct errors when being used in Early Execution privilege.</onlyinclude>


== References ==
== References ==
{{MC/Reflist}}
{{reflist}}


== Navigation ==
== Navigation ==
{{MC/Navbox Bedrock Edition versions|1.2x}}
{{Navbox Bedrock Edition versions|1.2x}}


[[Category:Bedrock Edition 1.21.70 betas]]
[[Minecraft:de:Bedrock Edition beta 1.21.70.25]]
 
[[Minecraft:es:Bedrock Edition Preview 1.21.70.25]]
de:Bedrock Edition beta 1.21.70.25
[[Minecraft:ja:Bedrock Edition Preview 1.21.70.25]]
es:Bedrock Edition Preview 1.21.70.25
[[Minecraft:pt:Edição Bedrock Preview 1.21.70.25]]
ja:Bedrock Edition Preview 1.21.70.25
[[Minecraft:ru:Preview 1.21.70.25 (Bedrock Edition)]]
pt:Edição Bedrock Preview 1.21.70.25
[[Minecraft:uk:Preview 1.21.70.25 (Bedrock Edition)]]
ru:Preview 1.21.70.25 (Bedrock Edition)
[[Minecraft:zh:基岩版1.21.70.25]]
uk:Preview 1.21.70.25 (Bedrock Edition)
zh:基岩版1.21.70.25

Latest revision as of 11:05, 25 May 2026

Template:Infobox version


Beta 1.21.70.25 (ChromeOS, Android) or Preview 1.21.70.25 (Windows, iOS, iPadOS, Xbox, PlayStation) is the fifth beta/Preview version for Minecraft:Bedrock Edition 1.21.70, released on February 26, 2025<ref>Template:Cite</ref>, which fixes bugs.

Changes

Blocks

Minecraft:Leaf Litter

  • Add biome based tinting to leaf litter.

Mobs

Minecraft:Sheep

  • Reverted the change from Preview 1.21.70.23 that allowed blue, light blue, cyan, yellow, orange and red sheep to spawn naturally in different biomes.
  • Black sheep will still be the most common type to spawn in cold biomes, and brown Sheep will be the most common type in warm biomes.
  • Pink sheep will still be very rare and able to spawn anywhere where sheep can spawn.
  • Sheep wool texture has been tweaked to remove stark line at the back.

Minecraft:Wandering Trader

  • Wandering traders' buying trades can now be used twice before they lock instead of only once.

Gameplay

Minecraft:Achievements

  • Enabled earning achievements while playing in a world with Minecraft:add-ons applied.

General

Minecraft:Settings

  • Enabled Filter Profanity toggle on mobile platforms.

Minecraft:UI

  • Touch controls: camera perspective can now be changed from a HUD button., enable this in the touch settings.

Technical

Minecraft:Biomes

Client Biome Components

Minecraft:Blocks

<syntaxhighlight lang="c++">

"minecraft:destruction_particles": {
 "texture": "my_particles_texture",
 "tint_method": "grass"
}

</syntaxhighlight> or <syntaxhighlight lang="c++"> "minecraft:destruction_particles": {

"texture": "my_particles_texture"

} </syntaxhighlight>

Minecraft:Commands

Minecraft:Dedicated Server

  • Exposed a new parameter for dedicated server. This will make the server more strict on entity interactions. Look in Template:Cd for more information on what these do.
  • Removed Template:Cd parameter. It will now always use Template:Cd.

General

  • Server Authoritative movement is now turned on by default.

Minecraft:Particles

  • Multiple controllers transitioning out of a state at the same time will now properly expire all intended particles instead of just the last one.

Experimental

These additions and changes are accessible by enabling the "Beta APIs" experimental toggle.

Changes

Technical

API

Graphical

  • Reduced emissive intensity by a factor of 15 in the Deferred Technical Preview, creators will likely need to adjust their emissive texture values.
  • Adjusted air and fog densities for volumetric scattering for more visible light rays in Deferred Technical Preview.
  • Made slight adjustments to auto exposure and eye adaptation in the Deferred Technical Preview.

Fixes

Template:Fixes Other

  • Potted plants are no longer clipping through flower pots.
  • Fixed wildflower item texture being slightly offset compared to Java.
  • Temperate cows no longer have harsh borders on their legs.
  • Red and brown mooshrooms no longer have harsh borders on their legs.
  • Fixed iron golem cracked texture not appearing at appropriate damage levels.
  • Fixed texture on the sides of a cold cow's head to be mirrored correctly.
  • Fixed a bug where using items with a use duration (fishing rods, food, potions, etc.) and changing slots would force your slot back to the original slot.
  • Stacks are now correctly splitting across slots when moving cursor and holding the button to split stack.
  • Fixed a potential crash that could occur when splitting stacks of items in the creative inventory.
  • Fixed an issue which prevented some users from accessing the Create New World screen in iOS Preview and PlayStation Preview.
  • Empty bell blocks no longer crash the game when moved by a sticky piston.
  • Fixed a bug where Template:Cmd, Template:Cmd and Template:Cmd commands would recognize IDs of some flattened blocks as block group names and affect all variants under those groups.
  • Fixed an issue that occurs when cancelling world resource pack download.
  • Fixed a crash that occurs when initializing Template:Cd renderer.
  • Fixed mirroring and rotation of crafter blocks when part of a structure that is being placed.
  • Fixed an issue where native constructors were not properly checking privileges when being called. Constructors now check privileges properly and produce correct errors when being used in Early Execution privilege.

References

Template:Reflist

Navigation

Template:Navbox Bedrock Edition versions

Minecraft:de:Bedrock Edition beta 1.21.70.25 Minecraft:es:Bedrock Edition Preview 1.21.70.25 Minecraft:ja:Bedrock Edition Preview 1.21.70.25 Minecraft:pt:Edição Bedrock Preview 1.21.70.25 Minecraft:ru:Preview 1.21.70.25 (Bedrock Edition) Minecraft:uk:Preview 1.21.70.25 (Bedrock Edition) Minecraft:zh:基岩版1.21.70.25