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 beta 1.17.20.23: Difference between revisions

From SAS Gaming Wiki
imported>NovaBot
m Bot: Change pseudo headers according to MCW:PSEUDO
 
SyncBot (talk | contribs)
Fix template calls: add MC/ prefix
 
(One intermediate revision by the same user not shown)
Line 24: Line 24:


'''Molang '''
'''Molang '''
* {{cd|min_engine_version}} from Resource Pack and Behavior Pack manifests is now passed into Molang expression parsing.
* {{MC/Cd|min_engine_version}} from Resource Pack and Behavior Pack manifests is now passed into Molang expression parsing.
** This allows for future breaking changes tied to a specific engine version.
** This allows for future breaking changes tied to a specific engine version.


Line 31: Line 31:


== Experimental ==
== Experimental ==
These changes are accessible by enabling the "[[Minecraft:Caves & Cliffs]]" and "Enable GameTest Framework" experimental toggle.
These changes are accessible by enabling the "Caves & Cliffs" and "Enable GameTest Framework" experimental toggle.


=== Mobs ===
=== Mobs ===
Line 41: Line 41:
* Renamed module "Minecraft" to "mojang-minecraft"  
* Renamed module "Minecraft" to "mojang-minecraft"  
* Renamed module "GameTest" to "mojang-gametest"  
* Renamed module "GameTest" to "mojang-gametest"  
** Renamed function {{cd|assertBlockTypePresent}} to {{cd|assertBlockPresent}}
** Renamed function {{MC/Cd|assertBlockTypePresent}} to {{MC/Cd|assertBlockPresent}}
** Renamed function {{cd|assertEntityData}} to {{cd|assertEntityState}}
** Renamed function {{MC/Cd|assertEntityData}} to {{MC/Cd|assertEntityState}}
** Removed function {{cd|assertBlockTypeNotPresent}}
** Removed function {{MC/Cd|assertBlockTypeNotPresent}}
** Removed function {{cd|assertEntityNotPresent}}  
** Removed function {{MC/Cd|assertEntityNotPresent}}  
** Removed function {{cd|assertEntityNotPresentInArea}}  
** Removed function {{MC/Cd|assertEntityNotPresentInArea}}  
** Removed function {{cd|assertEntityNotTouching}}  
** Removed function {{MC/Cd|assertEntityNotTouching}}  
** Removed function {{cd|succeedWhenEntityNotPresent}}  
** Removed function {{MC/Cd|succeedWhenEntityNotPresent}}  
** Modified signature of function {{cd|assertBlockState(blockLocation: BlockLocation, callback: (Block) -> boolean)}}
** Modified signature of function {{MC/Cd|assertBlockState(blockLocation: BlockLocation, callback: (Block) -> boolean)}}
** Modified signature of function {{cd|assertBlockPresent(blockType: BlockType, blockLocation: BlockLocation, isPresent: boolean)}}
** Modified signature of function {{MC/Cd|assertBlockPresent(blockType: BlockType, blockLocation: BlockLocation, isPresent: boolean)}}
** Modified signature of function {{cd|assertEntityPresent(entityTypeIdentifier: string, blockLocation: BlockLocation, isPresent: boolean)}}  
** Modified signature of function {{MC/Cd|assertEntityPresent(entityTypeIdentifier: string, blockLocation: BlockLocation, isPresent: boolean)}}  
** Modified signature of function {{cd|assertEntityPresentInArea(entityTypeIdentifier: string, isPresent: boolean)}}  
** Modified signature of function {{MC/Cd|assertEntityPresentInArea(entityTypeIdentifier: string, isPresent: boolean)}}  
** Modified signature of function {{cd|assertEntityTouching(entityTypeIdentifier: string, location: Location, isTouching: boolean)}}  
** Modified signature of function {{MC/Cd|assertEntityTouching(entityTypeIdentifier: string, location: Location, isTouching: boolean)}}  
** Modified signature of function {{cd|succeedWhenEntityPresent(entityTypeIdentifier: string, location: Location, isPresent: boolean)}}  
** Modified signature of function {{MC/Cd|succeedWhenEntityPresent(entityTypeIdentifier: string, location: Location, isPresent: boolean)}}  
** Added GameTestExtension function {{cd|assertBlockProperty(propertyName: string, value: number | string | boolean, blockLocation: BlockLocation)}}  
** Added GameTestExtension function {{MC/Cd|assertBlockProperty(propertyName: string, value: number | string | boolean, blockLocation: BlockLocation)}}  


== Fixes ==
== Fixes ==
Line 95: Line 95:


'''Commands '''
'''Commands '''
* Loading a structure with the {{cmd|structure}} command now displays the correct output messages ({{bug|MCPE-132813}})
* Loading a structure with the {{MC/Cmd|structure}} command now displays the correct output messages ({{bug|MCPE-132813}})
* The {{cmd|particle}} command position argument is now optional ({{bug|MCPE-128379}})  
* The {{MC/Cmd|particle}} command position argument is now optional ({{bug|MCPE-128379}})  
* The {{cmd|particle}} command will now output on success ({{bug|MCPE-80348}})  
* The {{MC/Cmd|particle}} command will now output on success ({{bug|MCPE-80348}})  
* The {{cmd|particle}} command no longer shows an error when run successfully through {{cmd|execute}} ({{bug|MCPE-129001}}).</onlyinclude>
* The {{MC/Cmd|particle}} command no longer shows an error when run successfully through {{MC/Cmd|execute}} ({{bug|MCPE-129001}}).</onlyinclude>


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


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


[[Minecraft:de:Bedrock Edition beta 1.17.20.23]]
de:Bedrock Edition beta 1.17.20.23
[[Minecraft:es:Bedrock Edition beta 1.17.20.23]]
es:Bedrock Edition beta 1.17.20.23
[[Minecraft:pt:Edição Bedrock beta 1.17.20.23]]
pt:Edição Bedrock beta 1.17.20.23
[[Minecraft:ru:Beta 1.17.20.23 (Bedrock Edition)]]
ru:Beta 1.17.20.23 (Bedrock Edition)
[[Minecraft:zh:基岩版1.17.20.23]]
zh:基岩版1.17.20.23

Latest revision as of 19:31, 9 April 2026

Template:Infobox version

Beta 1.17.20.23 is the fourth beta version for Minecraft:Bedrock Edition 1.17.30, released on July 22, 2021,<ref>Template:Cite</ref> which fixes bugs.

Changes

Technical

Gameplay

  • Data-driven blocks can now be added to the creative menu.

Molang

  1. REDIRECT Template:Code

Template:Redr from Resource Pack and Behavior Pack manifests is now passed into Molang expression parsing.

    • This allows for future breaking changes tied to a specific engine version.

User Interface

  • UI bind objects can now utilize the ignore field.

Experimental

These changes are accessible by enabling the "Caves & Cliffs" and "Enable GameTest Framework" experimental toggle.

Mobs

General

  • Hostile mobs can now spawn in the new mountain and cave biomes.

Technical

GameTest Framework

  • Renamed module "Minecraft" to "mojang-minecraft"
  • Renamed module "GameTest" to "mojang-gametest"
    • Renamed function
  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr

    • Renamed function
  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr

    • Removed function
  1. REDIRECT Template:Code

Template:Redr

    • Removed function
  1. REDIRECT Template:Code

Template:Redr

    • Removed function
  1. REDIRECT Template:Code

Template:Redr

    • Removed function
  1. REDIRECT Template:Code

Template:Redr

    • Removed function
  1. REDIRECT Template:Code

Template:Redr

    • Modified signature of function
  1. REDIRECT Template:Code

Template:Redr

    • Modified signature of function
  1. REDIRECT Template:Code

Template:Redr

    • Modified signature of function
  1. REDIRECT Template:Code

Template:Redr

    • Modified signature of function
  1. REDIRECT Template:Code

Template:Redr

    • Modified signature of function
  1. REDIRECT Template:Code

Template:Redr

    • Modified signature of function
  1. REDIRECT Template:Code

Template:Redr

    • Added GameTestExtension function
  1. REDIRECT Template:Code

Template:Redr

Fixes

Stability and performance

  • Fixed several crashes that could occur during gameplay
  • Optimized pasting unicode text into Book & Quill (Template:Bug)
  • Fixed a crash that could occur when crafting a Crafting Table with Gameplay Tips enabled

Gameplay

  • Fixed Bed display if the foot of the Bed is in a brighter area than the head (Template:Bug)
  • Fixed Large Chest display so the brightest end of the Chest is chosen (Template:Bug)
  • Travelling through End portals can no longer cause players to take fall damage (Template:Bug, Template:Bug)

Items

  • Made projectile items move more smoothly when far from players (Template:Bug)
  • Holding a Shield in Marketplace maps no longer shows a content error
  • Strong/long/splash/lingering potions can be placed in the Brewing Stand manually (Template:Bug)

Mobs

  • Undead mobs standing near Powder Snow now burn normally (Template:Bug)
  • Powder Snow above undead mobs now prevents burning effect
  • Multiple Shulkers will no longer be able to spawn in the same position from spawn eggs or End City generation (Template:Bug)
  • Mobs can now pathfind correctly when standing on Amethyst Buds (Template:Bug)
  • Fixed Horses sometimes becoming invisible after players dismount them (Template:Bug)
  • Grown up Goats no longer lose their Horns when reloading a world
  • Lightning no longer randomly strikes mobs that are under blocks (Template:Bug)

Blocks

  • Spore Blossom no longer has a randomly offset hitbox (Template:Bug)
  • Moss Block and Moss Carpet now break when moved by Pistons and Sticky Pistons can no longer pull them (Template:Bug, Template:Bug)
  • Water dripping from Pointed Dripstone can no longer fill Cauldrons with Potions (Template:Bug)
  • Measurements of hitbox of Spore Blossom now match Java Edition
  • Fixed issue causing Slime and Honey Block movement slowdown to not be fully applied to players

User interface

  • Emote wheel no longer appears when pressing Ctrl+B in-game (Template:Bug)
  • Fixed Input Method Editor (IME) not working after suspending the game on Windows 10 (Template:Bug)
  • Added a new sidebar to Marketplace and Dressing Room related screens to help better improve the experience of navigating these areas
  • There is now an item transferring animation when deselecting a recipe

Commands

  • Loading a structure with the
  1. REDIRECT Template:Command

Template:Redr command now displays the correct output messages (Template:Bug)

  • The
  1. REDIRECT Template:Command

Template:Redr command position argument is now optional (Template:Bug)

  • The
  1. REDIRECT Template:Command

Template:Redr command will now output on success (Template:Bug)

  • The
  1. REDIRECT Template:Command

Template:Redr command no longer shows an error when run successfully through

  1. REDIRECT Template:Command

Template:Redr (Template:Bug).

References

<references group="">

 </references>

Navigation

Template:BlockSprite Demo
(Guide)
Template:BlockSprite 0.1
(Guide)
Template:FileLink 0.2
(Guide)
Template:BlockSprite 0.3
(Guide)
Template:BlockSprite 0.4
(Guide)
Template:BlockSprite 0.5
(Guide)
Template:ItemSprite 0.6
(Guide)
Template:ItemSprite 0.7
(Guide)
v0.7.0
Template:LegacyItemSprite 0.8
(Guide)
v0.8.0
Template:LegacyBlockSprite 0.9
(Guide)
v0.9.0
Template:EnvSprite 0.10
(Guide)
v0.10.0
Template:ItemSprite 0.11
(Guide)
v0.11.0
Template:EnvSprite 0.12
(Guide)
v0.12.1
Template:ItemSprite 0.13
(Guide)
v0.13.0
Template:ItemSprite Overworld Update
(Guide)
v0.14.0
Template:EntitySprite Friendly Update
(Guide)
v0.15.0
Realms
v0.15.1
Template:ItemSprite Boss Update
(Guide)
v0.16.0
Template:EntitySprite Ender Update
(Guide)
1.0.0
1.0.3
1.0.4
1.0.5
1.0.6
Template:ItemSprite Discovery Update
(Guide)
1.1.0
1.1.1
1.1.3
Template:FileLink Better Together Update
(Guide)
1.2.0
1.2.3
1.2.5
1.2.6
1.2.10
1.2.13
Template:ItemSprite Update Aquatic (Phase One)
(Guide)
1.4.0
Template:BlockSprite Update Aquatic (Phase Two)
(Guide)
1.5.0
Template:EntitySprite 1.6
(Guide)
1.6.0
Template:BlockSprite 1.7
(Guide)
1.7.0
Template:EntitySprite 1.8
(Guide)
1.8.0
Template:EntitySprite 1.9
(Guide)
1.9.0
Template:BlockSprite Texture Update
(Guide)
1.10.0
Template:EffectSprite Village & Pillage
(Guide)
1.11.0
Template:BlockSprite 1.12
(Guide)
1.12.0
Template:EntitySprite 1.13
(Guide)
1.13.0
Template:EntitySprite Buzzy Bees
(Guide)
1.14.0
1.14.1
1.14.20
1.14.30
Template:ItemSprite Nether Update
(Guide)
1.16.0
1.16.20
1.16.100
1.16.200
RTX Beta
1.16.210
1.16.220
Template:BlockSprite Caves & Cliffs: Part I
(Guide)
1.17.0
1.17.10
1.17.30
1.17.40
Template:BlockSprite Caves & Cliffs: Part II
(Guide)
1.18.0
1.18.10
1.18.30
Template:BlockSprite The Wild Update
(Guide)
1.19.0
1.19.10
1.19.20
1.19.30
1.19.40
1.19.50
1.19.60
1.19.70
1.19.80
Template:ItemSprite Trails & Tales
(Guide)
1.20.0
1.20.10
1.20.30
1.20.40
Template:EntitySprite Bats and Pots
(Guide)
1.20.50
1.20.60
1.20.70
Template:EntitySprite Armored Paws
(Guide)
1.20.80
Template:ItemSprite Tricky Trials
(Guide)
1.21.0
1.21.20
1.21.30
Template:ItemSprite Bundles of Bravery
(Guide)
1.21.40
Template:BlockSprite The Garden Awakens
(Guide)
1.21.50
1.21.60
Template:BlockSprite Spring to Life
(Guide)
1.21.70
1.21.80
Template:EntitySprite Chase the Skies
(Guide)
1.21.90
1.21.100
Template:EntitySprite The Copper Age
(Guide)
1.21.111*
1.21.120
Template:ItemSprite Mounts of Mayhem
(Guide)
1.21.130
26.0
Template:Nowrap

Template:Article other

de:Bedrock Edition beta 1.17.20.23 es:Bedrock Edition beta 1.17.20.23 pt:Edição Bedrock beta 1.17.20.23 ru:Beta 1.17.20.23 (Bedrock Edition) zh:基岩版1.17.20.23