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.130.20

From SAS Gaming Wiki

Template:Infobox version


Beta 1.21.130.20 (ChromeOS, Android) or Preview 1.21.130.20 (Windows, iOS, iPadOS, Xbox, PlayStation) is the first beta/Preview version for Minecraft:Bedrock Edition 1.21.130, released on October 14, 2025,<ref>Template:Cite</ref> which adds features for Minecraft:Mounts of Mayhem and fixes bugs.

Additions

Items

Template:Animate Minecraft:Nautilus Armor

Template:Animate Minecraft:Spawn Eggs

  • Added nautilus and zombie nautilus spawn eggs.

Template:Animate Minecraft:Spear

  • New weapon that can be crafted in wood, stone, copper, iron, gold, diamond and netherite versions.
    • Each material has different stats for timing, influencing how fast they are to use.
    • Copper, iron and golden spears can be smelted into the respective Minecraft:nuggets.
  • Can be enchanted with the exclusive enchantment Minecraft:Lunge, in addition to the available enchantments for Minecraft:swords.
  • Has a minimum reach for damage, being too close to a target will yield no damage.
    • Has extended maximum reach compared to other tools and weapons.
  • Minecraft:Zombies, Minecraft:husks, Minecraft:zombified piglins and Minecraft:piglins can spawn holding a spear.
  • Has two attacks: jab and charge.
    • Jab
      • Used by quick-pressing the Template:Control.
      • Is a low-damage attack with knockback.
      • Has a cooldown between attacks.
      • Wooden spears have the fastest cooldown, while netherite has the slowest.
      • Can hit multiple enemies.
    • Charge
      • Used by holding the Template:Control.
      • Damage is based on spear material, the player’s view angle, and the velocity of both the player and the target.
      • While holding down the button, the attack goes through three stages before returning to idle:
        • Engaged: The spear can deal damage, knockback, and dismount mounted enemies if the speed is above the required thresholds.
        • Tired: Indicated by the spear rotating to a vertical position and shaking. The spear can deal damage and knockback (but not dismount) if the speed is above the required thresholds.
        • Disengaged: Indicated by the spear being lowered, pointing downwards. The Spear gives damage but not knockback or dismount if the speed is above the required threshold.
      • The spear's range when used by mobs is half of that when used by players, but they can deal damage, dismount and knockback at lower speeds than the players.

Mobs

File:Nautilus BE1.png Minecraft:Nautilus

File:Zombie Nautilus BE1.png Minecraft:Zombie Nautilus

  • A new neutral underwater mob that spawns with a drowned rider wielding a Minecraft:trident.
  • Hostile only if ridden by a hostile mob.
  • Behaves similar to the nautilus except that it cannot be bred.
  • Burns in sunlight, like other Minecraft:undead mobs.
    • Nautilus armor protects it from sunlight damage.
  • Drops 0-3 Minecraft:rotten flesh when killed, on a player kill, unaffected by Minecraft:Looting.

Gameplay

Minecraft:Effects

Minecraft:Enchantments

  • Minecraft:Lunge
    • A new enchantment that is unique to the Minecraft:spear.
    • Only works with the jab attack.
    • When doing a jab attack with Lunge, it propels the player horizontally in the view direction.
    • The view angle needs to be perfectly leveled horizontally to achieve maximum lunge distance.
    • Does significant durability damage to the spear.

General

Minecraft:Settings

  • Added an option to adjust the size of the top buttons in the Minecraft:HUD for touch controls.
  • Removed the "Customize Controls" toggle, the button now always appears.
  • Added an option to the video settings to adjust screen tilting when taking Minecraft:damage.
  • Added an option to Minecraft:options.txt to toggle the debug information on the top of the screen.

Graphical

Changes

Audio

  • The swimming sound no longer plays when flying underwater.

Biomes

Blocks

File:Hopper.png Minecraft:Hopper

  • Hoppers now have a short cooldown after being moved by a Minecraft:piston that prevents interaction.

General

  • The camera Y-sensitivity for D-Pad controls has been decreased.
  • Add-Ons navigation buttons now have proper spacing between the icon and the text.

Graphical

Mobs

File:Piglin.png Minecraft:Piglin

  • Piglins can now spawn holding spears and use its jab attack.
  • Piglins now consider Minecraft:golden spears as one of the items they like.

File:Pufferfish large.png Minecraft:Pufferfish

Template:Animate Minecraft:Zombie, Minecraft:Husk, and Minecraft:Zombified Piglin

  • Zombies, husks and zombified piglins can now spawn holding spears and use its charge attack.

width=51x51 Minecraft:Zombie Horse

Technical

AI Goals

  • Made schemas for goals Template:Cd and Template:Cd stricter when parsing and will fail to load an entity json that has invalid data in versions 1.21.130 and newer.

API

Minecraft:Blocks

  • The Template:Cd option in geometry files can no longer be disabled to render block-items larger than its frame from Template:Cd 1.21.130 onward.

Components

  • Updates to Template:Cd
    • Added new field Template:Cd that allows entities with this component to dash underwater.

Entity Components

  • Added the Template:Cd component, that causes the entity's body to automatically rotate to align with its mounted vehicle.

Item Components

  • Added the Template:Cd item component.
    • Allows overriding the swing sounds emitted by the user.
    • Fields:
      • Template:Cd: sound played when an attack misses or deals no damage due to invulnerability.
      • Template:Cd: sound played when an attack hits.
      • Template:Cd: sound played when an attack hits and deals critical damage.
  • Added the Template:Cd item component.
    • Description:
      • Allows an item to deal damage and other effects every tick while in use, to all unobstructed targets found in a straight line from the user's view vector.
      • Damage is computed based on both the user's and target's velocity projected onto the view vector (via dot product).
      • The more the user and target move toward each other and align with the view vector, the higher the damage.
      • After applying Template:Cd and Template:Cd, the resulting damage is floored to the nearest lower integer.
    • Fields:
      • Template:Cd: Ticks to wait before applying damage and effects.
      • Template:Cd: Range along the view vector where entities can be hit.
      • Template:Cd: Extra tolerance on the raycast to detect entities.
      • Template:Cd: Multiplies the sum of the projected velocities.
      • Template:Cd: Adds to the multiplied sum of the projected velocities.
      • Template:Cd: Conditions that need to be satisfied for damage to be applied.
      • Template:Cd: Conditions that need to be satisfied for knockback to be applied.
      • Template:Cd: Conditions that need to be satisfied for riders to be dismounted.
    • Template:Cd, Template:Cd and "Template:Cd fields:
      • Template:Cd: Time, in ticks, during which the effect can be applied after Template:Cd elapses.
      • Template:Cd: Minimum user's speed (projected onto the view vector via a dot product) required for the effect to be applied.
      • Template:Cd: Minimum relative speed of the user with respect to the target (projected onto the view vector via a dot product) required for the effect to be applied.
    • Requirements:
      • Requires the Template:Cd item component on the same item.
  • Added the Template:Cd item component.
    • Description:
      • Allows an item to deal damage to all entities detected in a straight line along the user's view vector.
      • Items with this component cannot destroy blocks, as the attack action always takes priority, regardless of what the user is looking at.
    • Fields:
      • Template:Cd: Range along the view vector where entities can be hit.
      • Template:Cd: Extra tolerance on the raycast to detect entities.
    • Requirements:
  • The Template:Cd item component now supports a Template:Cd field.
    • Values:
      • Template:Cd: puts the item on cooldown when used, preventing further use until it expires, but still allowing attacks, mining, and interaction.
      • Template:Cd: puts the item on cooldown when attacking, preventing further attacks until it expires, but still allowing use, mining, and interaction.

Minecraft:Molang

Network

Experimental

These additions and changes are accessible by enabling the "Beta APIs", "Upcoming Creator Features" Minecraft:experimental toggles.

Additions

Technical

API

API Infra

Minecraft:Blocks

Changes

Technical

API

  • Debug drawing tech in Template:Cd now supports rendering shapes in different dimensions:

Fixes

Template:Fixes Other

  • Fixed an issue where the replacement biomes were not read for client-side chunk generation.
  • Fixed large flipbook textures corrupting other textures.
  • Fixed bug where Minecraft:camels could not dash when standing in water.
  • Fixed Realm server selection behaving unpredictably.
  • Fixed a bug where some achievements could not be manually removed from the In Progress list.
  • Fixed disabling of building and mining abilities for players with operator permissions while in Creative mode.
  • Fixed blocks using Template:Cd always being semi-transparent.
  • Fixed blocks using Template:Cd and Template:Cd not having shaded sides in the inventory.
  • Fixed triggering of Template:Cd to only happen on the start of a swing.
  • Fixed an issue where Template:Cd and Template:Cd stopped working for some entities such as Template:Cd, ground items, Template:Cd, Template:Cd and Template:Cd.
  • Fixed issue where onBreak beta API event would not fire if a Minecraft:piston was the breaking cause.
  • Fixed Minecraft:bundle duplication with Minecraft:hoppers.
  • Prevented a crash when trying to export structures in unsupported platforms.

References

Template:Reflist

Navigation

Template:Navbox Bedrock Edition versions

Minecraft:de:Bedrock Edition beta 1.21.130.20 Minecraft:es:Bedrock Edition Preview 1.21.130.20 Minecraft:pt:Edição Bedrock Preview 1.21.130.20 Minecraft:zh:基岩版1.21.130.20