This commit is contained in:
Ryan Voots 2024-12-24 06:17:34 -05:00
parent 4680029141
commit e5343a8729
4040 changed files with 772782 additions and 0 deletions

108
wiki_backup/.mclevel.txt Normal file
View file

@ -0,0 +1,108 @@
{{outdated|This format was [[Java Edition Alpha level format|replaced]] starting with [[Infdev]].|edition=java}}
The .mclevel map format is an old map format created by Notch. It is based on the [[NBT format]] and is GZip compressed.
The map format was in use since [[Indev 0.31 20100122]] up until [[Infdev 20100325]].
While Alpha (and Infdev) levels use NBT files, they have a very different file format.
For details on the infinite map format, see [[Java Edition Alpha level format]].
== NBT structure ==
<div class="treeview">
* {{nbt|compound|MinecraftLevel}}: The root tag.
** {{nbt|compound|About}}: Information about the level.
*** {{nbt|long|CreatedOn}}: The Unix time when the level was created.
*** {{nbt|string|Name}}: The name of the level, always "A Nice World."
*** {{nbt|string|Author}}: The name of the user who created the level.
** {{nbt|compound|Environment}}: Information about the level's environment, which varies based on the map generation settings.
*** {{nbt|short|TimeOfDay}}: The time in ticks affecting daylight cycle. Range 0 - 24000.
*** {{nbt|byte|SkyBrightness}}: The sky light level, 0 to 15.
*** {{nbt|int|SkyColor}}: The RGB color of the sky, 24 bits. Red is SkyColor >> 16 & 255, green is SkyColor >> 8 & 255, blue is SkyColor & 255.
*** {{nbt|int|FogColor}}: The RGB color of the fog, 24 bits. Red is FogColor >> 16 & 255, green is FogColor >> 8 & 255, blue is FogColor & 255.
*** {{nbt|int|CloudColor}}: The RGB color of the clouds, 24 bits. Red is CloudColor >> 16 & 255, green is CloudColor >> 8 & 255, blue is CloudColor & 255.
*** {{nbt|short|CloudHeight}}: The height of the clouds (Y coordinate).
*** {{nbt|byte|SurroundingGroundType}}: The block ID of the "surrounding ground".
*** {{nbt|short|SurroundingGroundHeight}}: The height of the "surrounding ground".
*** {{nbt|byte|SurroundingWaterType}}: The block ID of the "surrounding water".
*** {{nbt|short|SurroundingWaterHeight}}: The height of the "surrounding water".
** {{nbt|compound|Map}}: The actual map data.
*** {{nbt|short|Width}}: The width of the level.
*** {{nbt|short|Length}}: The length of the level.
*** {{nbt|short|Height}}: The height of the level.
*** {{nbt|list|Spawn}}: List of 3 TAG_Shorts for the X, Y, and Z spawn coordinates.
*** {{nbt|byte-array|Blocks}}: Width*Length*Height bytes of block IDs. (8 bits)
*** {{nbt|byte-array|Data}}: Width*Length*Height bytes of block data (4 bit) and light value (next 4 bit).
** {{nbt|list|Entities}}: List of TAG_Compounds for the entities in the level.
*** {{nbt|compound}} An entity. The player has its own entity, shown below as an example.
**** {{nbt|string|id}}: The entity ID. In this case, "LocalPlayer".
**** {{nbt|list|Pos}}: List of 3 TAG_Floats for the X, Y, and Z position of the player.
**** {{nbt|list|Rotation}}: List of 2 TAG_Floats for the yaw and pitch of the player's view.
**** {{nbt|list|Motion}}: List of 3 TAG_Floats for the X, Y, and Z motion in meters per tick.
**** {{nbt|float|FallDistance}}: How far the player has fallen.
**** {{nbt|short|Health}}: The number of hit points the player has. 20 is 10 hearts.
**** {{nbt|short|AttackTime}}: Number of ticks the player is immune to attacks.
**** {{nbt|short|HurtTime}}: Number of ticks the player is red from being attacked.
**** {{nbt|short|DeathTime}}: Number of ticks the player has been dead for - used for controlling the death animation.
**** {{nbt|short|Air}}: The number of ticks before the player starts to drown. It starts at 300.
**** {{nbt|short|Fire}}: When negative, the number of ticks before the player can catch on fire. When positive, the number of ticks before the fire is extinguished.
**** {{nbt|int|Score}}: The player's score.
**** {{nbt|list|Inventory}}: List of TAG_Compounds representing items in the player's inventory.
***** {{nbt|compound}} An item stack.
****** {{nbt|byte|Slot}}: The [[Java Edition data values#Inventory Slot Number|Slot]] the item is in.
****** {{nbt|short|id}}: The Item [[Java Edition data values#IDs|ID]].
****** {{nbt|short|Damage}}: The item's [[Java Edition data values#Data|data]] value, or damage value for tools.
****** {{nbt|byte|Count}}: The number of this item in the stack. Range -128 to 127. Values less than 2 are not displayed in-game.
** {{nbt|list|TileEntities}}: List of TAG_Compounds for the tile entities in the level.
*** {{nbt|compound}} A tile entity.
**** {{nbt|string|id}}: Tile entity id. In this case, "Chest".
**** {{nbt|int|Pos}}: Position of the tile entity, explained later.
**** {{nbt|list|Items}}: List of TAG_Compounds representing items in the chest.
***** {{nbt|compound}} An item stack.
****** {{nbt|byte|Slot}}: The [[Java Edition data values#Inventory Slot Number|Slot]] the item is in.
****** {{nbt|short|id}}: The Item [[Java Edition data values#IDs|ID]].
****** {{nbt|short|Damage}}: The item's [[Java Edition data values#Data|data]] value, or damage value for tools.
****** {{nbt|byte|Count}}: The number of this item in the stack. Range -128 to 127. Values less than 2 are not displayed in-game.
</div>Calculating "Pos" tag of the tile entity:
pos = x + (y << 10) + (z << 20)
Calculating X, Y, and Z from "Pos" tag:
x = pos % 1024
y = (pos >> 10) % 1024
z = (pos >> 20) % 1024
== Blocks ==
The block byte array is used to define the types of blocks that occupy a map.
The number of bytes in the array may be calculated by multiplying the dimensions of the map.
Y being the up direction rather than Z.
For hex values see [[Java Edition data values#Blocks|Block IDs]].
To access a specific block from either the block or data array from XYZ coordinates, use the following formula:
<math>array index = (y * length + z) * width + x</math>
== Data ==
The data byte array is used for lighting and extra block data.
For extended information on block metadata, refer to [[Java Edition data value/Indev]].
== Lighting ==
[[File:Lighting values.png]]
There are 16 levels of lighting for a block ranging from <code>0x0</code> (0, no light) to <code>0xF</code> (15, full light).
== Navigation ==
{{Navbox Java Edition technical|general}}
[[Category:Development]]
[[de:Spielstand-Speicherung/Indev Level Format]]
[[fr:Format de carte mclevel (NBT)]]
[[ja:Levelフォーマット/Java Edition Indev]]
[[nl:Indev level formaat]]
[[pt:Formato de nível da Edição Java Indev]]
[[ru:Формат файлов Minecraft (NBT)]]
[[zh:Indev世界格式]]

118
wiki_backup/0.0.14a.txt Normal file
View file

@ -0,0 +1,118 @@
{{for|developmental versions of 0.0.14a|Java Edition Classic 0.0.14a/Development}}
{{Lost version|commonfake=1}}
{{Infobox version
|title=0.0.14a
|edition=Java
|prefix=Classic
|date=May 27, 2009
|clientdl=Client not archived
|serverdl=No corresponding server
|prevparent=0.0.13a
|prev=0.0.13a_03
|next=0.0.14a_01
|nextparent=0.0.15a (Multiplayer Test 1)
}}
'''0.0.14a'''<ref name=":0">{{link |url=https://web.archive.org/web/20170205200632/https://notch.tumblr.com/post/113985530/0014a-is-up-at-minecraftnet |title=0.0.14a is up at minecraft.net |date=May 28, 2009 |website=The Word of Notch}}</ref> is a version of [[Java Edition Classic]] released on May 27, 2009,<ref>[https://forums.tigsource.com/index.php?topic=6273.msg205284#msg205284 "Holy crap new tiles!"] TigSource, May 27, 2009, 15:31:58, UTC&minus;8</ref> shortly before 22:26 UTC.<ref>[[#logs|IRC logs]]: "''(00:26:45) <TheMystic89> seeing a nice number up to the left too''", "''(00:26:54) <Rotab> 0.0.14? =D''" (May 27, 2009, 22:26 UTC)</ref>
== Additions ==
{{Additions table
|Sand
|Gravel
|Coal Ore
|Iron Ore
|Gold Ore
|Oak Log
|Oak Leaves
}}
=== Blocks ===
; [[File:Sand JE1.png|32px]] [[Sand]]
* Affected by gravity.
** If placed above any number of air blocks, the sand immediately appears at the bottom.
; [[File:Gravel JE1.png|32px]] [[Gravel]]
* Affected by gravity.
** If placed above any number of air blocks, the gravel immediately appears at the bottom.
; [[File:Gold Ore JE1.png|32px]] [[Gold ore]]
* Can be found in amounts ranging from roughly 10 to 30 in a blob.
; [[File:Iron Ore JE1 BE1.png|32px]] [[Iron ore]]
* Can be found in amounts ranging from roughly 10 to 30 in a blob.
; [[File:Coal Ore JE1 BE1.png|32px]] [[Coal ore]]
* Can be found in amounts ranging from roughly 10 to 30 in a blob.
; [[File:Oak Log Axis Y JE1.png|32px]] [[Log]]
* Generates in trees.
; [[File:Oak Leaves JE1.png|32px]] [[Leaves]]
* Generate in trees.
* When broken, [[particles]] fall at the normal speed.
=== World generation ===
; [[File:Oak JE1.png|32px]] [[Tree]]s
* Made of logs and leaves.
=== General ===
; Worlds
* Improved level format, now supporting the ability to save [[entities]] to levels.
** There is now a cap of 256 mobs that can exist in a world.
; Controls
* Scroll-wheel block picking support.
** Only picks blocks that number keys can select.
* Holding down a mouse button allows for auto-building or breaking a block every 0.25 seconds.
; [[Cloud]]s
* Added clouds.
; [[Terrain]]
* New terrain generator.
; Other
* Fog rather than blank areas now control render distance.
** The fog only gets applied on lit surfaces. Blocks in the shade appear as they normally would.
* Ability to choose level size.
== Changes ==
=== Blocks ===
; [[Planks]]
* Changed the texture from [[File:Oak Planks JE2.png|32px]] to [[File:Oak Planks JE3 BE1.png|32px]].
; [[Cobblestone]]
* Changed the texture from [[File:Cobblestone JE1.png|32px]] to [[File:Cobblestone JE2.png|32px]].
; [[File:Water JE2.png|32px]] [[Water]]
* Flows faster.<ref>{{link |url=https://www.youtube.com/watch?v=LsWhsQLxCqs |title=Minecraft water flow test |date=May 23, 2009|website=YouTube}} [{{ytl|CNeaH8JVRy8}}<nowiki> (Archive)]</nowiki></ref>
* Now flows from [[world border]].
* Shows its texture when selected to place.{{verify|type=untestable|edition=java}}
* Texture is now lighter than the previous one.
=== General ===
* The player always spawns at the same place when pressing {{Key|R}} to respawn, unless this spawn is underwater.<ref>[[#logs|IRC logs]]: "''(00:34:59) <Rotab> so you have a fixed spawn point now?''" (May 27, 2009, 22:24 to 22:36 UTC)</ref>
== Bugs ==
* Levels do not load properly.<ref>[[#logs|IRC logs]]: "''(00:24:59) <TrueWolves> Minecraft is not working!''" [...] "''(00:28:11) <@notch> it doesn't seem to load levels properly, I'm trying to fix''" [...] "''(00:36:35) <@notch> 0.0.14a_01 is up, fixing the level load bug''" (May 27, 2009, 22:24 to 22:36 UTC)</ref><ref>[https://web.archive.org/web/20170205200642/http://notch.tumblr.com/post/112817460/had-some-issues-with-level-savingloading| "Had some issues with level saving/loading"] [[The Word of Notch]], May 25th, 2009</ref>
* Clicking "Return to Game" while in build mode places a block.<ref>[[#logs|IRC logs]]: "''(01:17:03) <justinforasec> I might have found a BUG, when i click to return to game it will lay down a block at the same time''" (May 27, 2009, 23:17 UTC)</ref>
== Trivia ==
* Many features implemented in 0.0.14a are commonly erroneously cited as being implemented in version [[Java Edition Classic 0.0.14a 01|0.0.14a_01]].<ref>{{Mcnet|block-week-leaves|Block of the Week: Leaves|August 18, 2017}}</ref>
== References ==
*{{anchor|logs}}[https://archive.org/download/Rotab-Minecraft-IRC-logs IRC logs], #minecraft.20090528.log (May 28, 2009, UTC+2)
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|Classic}}
[[de:Classic 0.0.14a]]
[[es:Java Edition Classic 0.0.14a]]
[[fr:Édition Java Classique 0.0.14a]]
[[hu:Java Edition Classic 0.0.14a]]
[[ja:Java Edition Classic 0.0.14a]]
[[lzh:爪哇版古典版〇點〇點一四甲]]
[[pt:Edição Java Classic 0.0.14a]]
[[ru:Classic 0.0.14a (Java Edition)]]
[[zh:Java版Classic 0.0.14a]]

View file

@ -0,0 +1,306 @@
{{Infobox version
|title=v0.12.1 alpha build 1
|image=Pocket Edition 0.12.1 build 1.png
|edition=Pocket Edition
|type=Build
|parent=v0.12.1 alpha
|date=July 29, 2015
|clientdl=[https://archive.org/download/MCPEAlpha/PE-a0.12.1-build1.apk Original]<br>
[https://archive.org/download/MCPEAlpha/PE-a0.12.1-build1-gingerbread.apk Gingerbread]<br>
[https://archive.org/download/MCPEAlpha/PE-a0.12.1-build1-honeycomb.apk Honeycomb]<br>
|prevparent=v0.11.2 alpha
|next=v0.12.1 alpha build 2
|nextparent=v0.12.2 alpha
}}<onlyinclude>
'''v0.12.1 alpha build 1''' is the first build version released for [[Pocket Edition v0.12.1 alpha|v0.12.1]].
== Additions ==
=== General ===
* Cross platform play for up to five players between Pocket Edition and Windows 10
* Controller and keyboard support
** Can change controls within options.
* Options
** {{Version exclusive}}: Option to reverse the location of the Sneak and Jump button.
** The jump button has been moved to the right side of the screen.
*** Added a sneaking button in place of where the current jump button is.
**** These are the new default controls.
** Option to disable the auto-jump feature.
* [[Particles]]
** <code>angryVillager</code>
** <code>largeexplode</code>
** <code>hugeexplode</code>
** <code>blockdust</code>
** <code>slime</code>
** <code>enchantementtable</code>
** <code>droplet</code>
** <code>snowshovel</code>
** Added falling particles.
=== Gameplay ===
* [[Hunger]]
* [[Experience]]
* [[Weather]]
** Rain
** Snowfall
** Thunderstorm
* [[Sprinting]]
* [[Sneaking]]
** Toggled by double-tapping the sneak button.
** Was previously available only on the Xperia PLAY gaming console.
* More [[difficulty]] modes
** Peaceful
** Easy
** Normal
** Hard
* Animation for switching [[blocks]] and [[items]].
* [[Critical hits]]
* [[Enchanting]]
* [[Brewing]]
* [[Item repair]]
=== Blocks ===
* [[Enchantment table]]s
** {{Version exclusive}}: Book on table glows<ref>https://twitter.com/_tomcc/status/621288048429547520</ref>
* [[Anvil]]s
** All 3 damage types
* [[Brewing stand]]s
* [[Mob head]]s
** Inventory icons are not 3-D
** [[Wither]] cannot yet be created.
* [[Flower pot]]s
* [[Soul sand]]
* [[Nether brick fence]]
* [[Nether quartz ore]]
=== Items ===
* [[Glass bottle]]s
* [[Potion]]s
** [[Splash potion]]s
* [[Golden carrot]]s
* [[Nether wart]]s
* [[Glistering melon]]s
* [[Golden apple]]s
* [[Enchanted golden apples]]
* [[Rabbit's foot]] (creative only as rabbits have not been added yet)
* [[Blaze rod]]s
* [[Blaze powder]]
* [[Ghast tear]]s
* [[Spider eye]]s
* [[Gold nugget]]s
* [[Fermented spider eye]]s
* [[Bottle o' enchanting|Bottles o' enchanting]] (creative only as trading have not been added yet)
* [[Poisonous potato]]es
* [[Enchanted book]]s
* [[Spawn Egg]]s
** [[Zombie Villager]]s
** [[Ocelot]]s
** [[Blaze]]s
===[[Creative]] inventory additions===
* [[Packed ice]]
* [[Spawn egg]]s:
** [[Ghast]]
** [[Blaze]]
** [[Ocelot]]
* [[Glowstone dust]]
* [[Gunpowder]]
* [[Redstone dust]] (brewing only)
* [[Slimeball]]s
* [[Sugar]]
* [[Magma cream]]
* [[Apple]]s
* [[Coal]]
* [[Charcoal]]
* [[Iron Ingot]]
* [[Gold Ingot]]
* [[Emerald]]s
* [[Diamond]]s
* [[Raw Porkchop]]
* [[Cooked Porkchop]]
* [[Steak]]
* [[Raw Chicken]]
* [[Cooked Chicken]]
* [[Baked Potato]]
* [[Bread]]
* [[String]]
* [[Beetroot]]
* [[Beetroot Soup]]
* [[Mushroom Soup]]
* [[Boat]]s:
** <span style='color:gray'>[[JE]] 1.9 feature</span>: Spruce, Birch, Jungle, Acacia, and Dark Oak variants
* [[Leather Armor]]
* [[Iron Armor]]
* [[Gold Armor]]
* [[Diamond Armor]]
=== World generation ===
* [[The Nether]]
** [[Nether portal]]s can also be up to 23x23 in size, like {{in|je}}.
** All items previously obtained through the [[Nether reactor]] are now available through their normal means.
* [[Nether fortress]]es
=== Mobs ===
* [[Iron golem]]s
* [[Snow golem]]s
* [[Ocelot]]s
* [[Zombie villager]]s
** <span style='color: gray'>[[JE]] 1.9 feature</span>: Villagers retain their profession and clothes, which appear tattered
* [[Blaze]]s
* [[Wither skeleton]]s
== Changes ==
=== General ===
* Changed game logo
* Graphics
** Tinted water - gradient from aqua to dark blue when viewed from a distance
* Relocated pause and chat button in Survival mode
* {{Version exclusive}}: Leaves in snowy biomes appear frost-covered during snowfall
* Scrollbar
** Always visible
** New texture
* The player can now swim in lava
* Sounds
** Ladder makes a new sound when climbing
** Lava and Water now have sounds
* Increased the length of the [[daylight cycle]] from 19,200 ticks (16 minutes) to 24,000 ticks (20 minutes)
=== Mobs ===
* Burning mobs have a sizzling particle effect once extinguished
* Mobs will now drop [[experience]] when killed
* [[Zombie]]
** Zombies now wear different armor and can hold items
** Zombies now drop weapons and armor rarely
* [[Skeleton]]s
** Skeletons now wear different armor and can hold items
** Improved accuracy
** Skeletons now drop weapons and armor rarely
** Spawning Skeletons in the Nether have a chance to spawn as a Wither Skeleton
* [[Slime]]s
** Now have particles when jumping
** Now drops [[slimeball]]
* [[Magma cube]]s
** Magma cubes and Ghasts now spawn naturally
** Magma cubes now split when killed
* [[Zombie pigmen]]
** Zombie Pigmen are now neutral
** Now spawn in the Nether
* [[Villager]]s
** Can now open and close doors
** Can now harvest crops
** Can now breed
** Now has angry particles if attacked by the player
=== [[Blocks]] and [[items]] ===
* New inventory icons for [[boat]]s
** Now include paddles
** Different boat types' items now are their respective color
* [[Nether Reactor]] blocks exist, but are rendered useless
* [[Food]]s
** Now restore [[hunger]] instead of [[health]]
* [[Snow layer]]s
** {{Version exclusive}}: Builds up multiple layers naturally through snowfall
** {{Version exclusive}}: Are now affected by gravity
* [[Packed ice]]
** New texture: [[File:Packed Ice JE1 BE2.png|32px]]
* [[Dead bush]]es
** Now drop 0—2 [[stick]]s when broken without [[shears]]
== Fixes ==
'''[https://bugs.mojang.com/browse/MCPE/fixforversion/15341 67 bugs fixed]'''
* Touchpad implementation fixed on the Sony Xperia Play
'''From released versions before 0.12.1'''
* {{bug|MCPE-3671}} You can't get out of lava<ref>{{reddit|sub=MCPE|3ejrk6/why_do_we_sink_in_lava_its_not_realistic_and_you|ctfownv}}</ref>
* {{bug|MCPE-4202}} Sounds on Android devices are incorrect
* {{bug|MCPE-5200}} Bug while mining/breaking blocks (Touch and Split Controls)
* {{bug|MCPE-6263}} Bow don't have particles in full charge.
* {{bug|MCPE-6806}} Automatic Flying Bug
* {{bug|MCPE-6854}} Auto jump not working with carpet
* {{bug|MCPE-6882}} Finger free mining bug.
* {{bug|MCPE-6886}} Wrong Crops Sound
* {{bug|MCPE-6998}} When tapping the leftmost box in hotbar while walking forward, you walk backward-left a bit.
* {{bug|MCPE-7873}} Baby pigs can pass trough slabs
* {{bug|MCPE-7880}} Hotbar size decreases when on split controls
* {{bug|MCPE-7878}} Cobblestone generators don't work for other players in Local Server Multiplayer
* {{bug|MCPE-7899}} painting <code>de_aztec</code> (or Aztec) does not exist in the game
* {{bug|MCPE-7901}} jungle leaves x-ray bug
* {{bug|MCPE-7914}} Putting out fire in creative mode
* {{bug|MCPE-7921}} Inventory Armor Section Bug!
* {{bug|MCPE-7925}} Red Sand Suffocation
* {{bug|MCPE-7975}} Burning fuel icon not decreasing when the world is closed and reopened
* {{bug|MCPE-7977}} Upper slabs cause top leaf texture to disappear
* {{bug|MCPE-7996}} Monster spawners only spawn mobs with data value 0
* {{bug|MCPE-8000}} Mesas generate on top of water bodies in Bryce mesa biomes
* {{bug|MCPE-8006}} Skeletons arrows bounce off
* {{bug|MCPE-8098}} Water and Lava disappear when switching view distances
* {{bug|MCPE-8146}} Redstone Ore doesn't give off particles.
* {{bug|MCPE-8149}} Heavy shading on water blocks at the world border
* {{bug|MCPE-8154}} Mining consecutive redstone ore blocks does not light each block as they are being mined
* {{bug|MCPE-8166}} Lava can tick through walls
* {{bug|MCPE-8372}} Fishing rod and flying glitch
* {{bug|MCPE-8376}} Wrong Magma Cream Name
* {{bug|MCPE-8377}} Magma Cubes Do Not Split
* {{bug|MCPE-8392}} Lighting glitch when standing under a door
* {{bug|MCPE-8412}} Block selection overlay is only visible on one side of a texture
* {{bug|MCPE-8422}} Villager professions not showing correctly on client
* {{bug|MCPE-8466}} Mob pathfinding considers the void to be a solid platform
* {{bug|MCPE-8517}} [Tamed wolves] cannot be healed to full health
* {{bug|MCPE-8522}} Falling beyond bedrock into void
* {{bug|MCPE-8572}} Baby animals can grow up in fences-type blocks and escape their pen
* {{bug|MCPE-8575}} Skeletons Aim is off
* {{bug|MCPE-8604}} Zombies think that slabs are full blocks
* {{bug|MCPE-8605}} Eating raw chicken gives you hunger?
* {{bug|MCPE-8606}} Water can turn lava into obsidian from underneath.
* {{bug|MCPE-8615}} View Bobbing Automatically defaults to on after restarting the app
* {{bug|MCPE-8628}} Egg shows snowball particles when thrown
* {{bug|MCPE-8630}} Fishing bobber (bait or lure) burns forever
* {{bug|MCPE-8641}} LAN Mid-Air glitch
* {{bug|MCPE-8654}} Wrong text when selecting which model to use with your custom skin
* {{bug|MCPE-8665}} Furnaces are facing wrong direction in village blacksmiths
* {{bug|MCPE-8676}} Mobs get stuck atop the border wall
* {{bug|MCPE-8702}} Baby zombie pigmen
* {{bug|MCPE-8707}} Double-tall flowers do not drop items when mined
* {{bug|MCPE-8853}} Carpet duplication when trying to place it where it cannot be placed
* {{bug|MCPE-8855}} Minecarts Wrong View when riding it down
* {{bug|MCPE-8881}} Baby chickens die in boats
* {{bug|MCPE-8961}} Cobwebs can't be broken by water
* {{bug|MCPE-8974}} After mobs get out of fire, they do not continue to burn
* {{bug|MCPE-9062}} Nether Reactor gives wrong message
* {{bug|MCPE-9150}} Unable to scroll a newly selected language off of the language menu screen
* {{bug|MCPE-9251}} Infinite Boat Rowing Bug
* {{bug|MCPE-9254}} Bow glitch
* {{bug|MCPE-9630}} No 32 bit support
'''From the 0.11.0 development versions'''
* {{bug|MCPE-8333}} Not translate in RU lang for blocks
* {{bug|MCPE-8359}} Custom Skins Crash
* {{bug|MCPE-8365}} Wrong death position-VIDEO
'''From the current version, hotfixed'''
* {{bug|MCPE-9356}} Enchant is not in Win 10 edition
* {{bug|MCPE-9362}} the cat was not different skin type as on pc
* {{bug|MCPE-9505}} Undeleteable worlds
</onlyinclude>
== References ==
{{reflist}}
== Navigation ==
{{Navbox Bedrock Edition versions|Alpha}}
[[de:Pocket Edition Alpha 0.12.1 build 1]]
[[es:Pocket Edition v0.12.1 alpha build 1]]
[[fr:Version portable Alpha 0.12.1 build 1]]
[[ja:Pocket Edition v0.12.1 alpha build 1]]
[[pt:Edição Pocket v0.12.1 alpha build 1]]
[[zh:携带版0.12.1.b1]]

View file

@ -0,0 +1,66 @@
{{Infobox version
|title=v0.12.1 alpha build 4
|image=Pocket Edition 0.12.1 build 4.png
|edition=Pocket Edition
|parent=v0.12.1 alpha
|type=Build
|date=August 4, 2015
|clientdl=[https://archive.org/download/MCPEAlpha/PE-a0.12.1-build4.apk Original]<br>
[https://archive.org/download/MCPEAlpha/PE-a0.12.1-build4-honeycomb.apk Honeycomb]<br>
|prevparent=v0.11.2 alpha
|prev=v0.12.1 alpha build 3
|next=v0.12.1 alpha build 5
|nextparent=v0.12.2 alpha
}}<onlyinclude>
'''v0.12.1 alpha build 4''' is the fourth build released for [[Pocket Edition v0.12.1 alpha|v0.12.1]].
== Changes ==
* Quartz pillars can now be placed directionally.
* Trying to connect to old versions of the game will now show an error message.
* Added recipes for golden apple and enchanted golden apple.
* Added enchanted books to the creative inventory.
* "Stone Cutter" and Crafting Table screens will now close if blocks are destroyed while having it open.
* Improved controls
== Fixes ==
{{Fixes|project=MCPE|fixedin=0.12.1 Beta 4|otherissuescount=12
|;From the 0.12.1 development versions
|MCPE-9333|Can't get back to the main screen. There is a back button loop.
|MCPE-9441|Less inventory in 0.12.0 than other versions
|MCPE-9448|Multiple crafting recipes appear for the same items
|MCPE-9540|Unable to make [wolves] stand up
|MCPE-9542|Big problems in domesticated animals ocelontes, wolf
|MCPE-10310|Changing D-pad size frequently sets it to the smallest size despite where you put the slider
|;From the previous development version
|MCPE-9545|World can be interacted with through the hotbar
|MCPE-9552|No inventory Only on the left-handed mode
|MCPE-9568|Crafting an enchanted Golden Apple yields a regular Golden apple
|MCPE-9646|Snow golem Bug
|MCPE-9666|Can't craft shovels or swords in multiplayer
|MCPE-9667|You can not close the inventory with the same button that you open
}}
;Other
*Farmland is not destroyed when jumping on it in multiplayer.
*Pressing the inventory button did not get the player back from multiple inventory screens.
*Crafting recipes were wrong in multiplayer.
*Partial blocks did not work properly in multiplayer.
*Game crashed when entering the nether repeatedly.
*When a controller is disconnected, the player continues the last action and other stuff.
*Players cannot drink potions in creative mode.
*Bane of arthropods does not deal additional damage to spiders.
*Furnace displayed blocks that were not in the player's inventory.
*Sky color is really dark. (Flat Worlds)
*Left Handed controls option.
*Regular golden apples and enchanted golden apples stacked with each other.</onlyinclude>
== Navigation ==
{{Navbox Bedrock Edition versions|Alpha}}
[[de:Pocket Edition Alpha 0.12.1 build 4]]
[[es:Pocket Edition v0.12.1 alpha build 4]]
[[fr:Version portable Alpha 0.12.1 build 4]]
[[ja:Pocket Edition v0.12.1 alpha build 4]]
[[pt:Edição Pocket v0.12.1 alpha build 4]]
[[zh:携带版0.12.1.b4]]

View file

@ -0,0 +1,114 @@
{{Infobox version
|title=v0.13.0 alpha build 1
|image=MCPE 0.13.0.png
|image2=Pocket Edition 0.13.0 build 1.png
|edition=Pocket Edition
|type=Build
|parent=v0.13.0 alpha
|date=November 2, 2015
|prevparent=v0.12.3 alpha
|next=v0.13.0 alpha build 2
|nextparent=v0.13.1 alpha
}}<onlyinclude>
'''v0.13.0 alpha build 1'''<ref>http://pocketbeta.minecraft.net/2015/11/changelog-whats-new-in-0130.html?m=0</ref> is the first build version released for [[Pocket Edition v0.13.0 alpha|v0.13.0]].
== Additions ==
=== General ===
* Client message appearing when attempting to build above level 127
* '''Options'''
** Change GUI size option
** Option to disable multiplayer
* '''Particles'''
** <code>happyVillager</code>
** <code>note</code>
=== [[Blocks]] ===
* '''[[Redstone]]-related blocks'''
** [[Redstone]]
** [[Redstone lamp]]s
** [[Redstone torch]]es
** [[Lever]]s
** [[Tripwire hook]]s
***[[Tripwire]]
** [[Daylight sensor]]
***[[Inverted daylight sensor]]
** [[Pressure plate]]s (stone and wooden)
** [[Weighted pressure plate]]s (gold and iron)
** [[Button]]s (stone and wooden)
** [[Detector rail]]s
** [[Activator rail]]s
** [[Trapped chest]]s
* Spruce, birch, jungle, acacia and dark oak [[wooden door]]s
* [[Iron trapdoor]]s
* [[Note block]]s
=== [[Items]] ===
* [[Spawn egg]]
** [[Rabbit]]
* [[Food]]
** [[Raw Rabbit]]
** [[Cooked Rabbit]]
** [[Rabbit Stew]]
* [[Rabbit Hide]]
=== World generation ===
* [[Desert pyramid]]s
=== Creative inventory additions ===
* [[Iron door]]s
=== Mobs ===
* Rabbits
** Smaller size
** Run from the player
** Can be killed in one shot using a fully charged [[bow]]
** Only spawn in [[forest]]s
** Can eat crops
** Previously added to [[Java Edition 1.8]]
== Changes ==
=== General ===
* '''Options'''
** Broadcast to LAN can no longer be changed in-game
* '''Graphics'''
** Light is now emitted from below the Nether
* Removed the <code>Coral</code> material which served no purpose<ref>https://www.reddit.com/r/Minecraft/comments/3n8vta/tommaso_checchi_on_twitter_i_just_removed_coral/cvm3hxc</ref>
* Items can now be dragged and dropped within the inventory (expiremental)
* Hotbar item count is now at the bottom corner of the selected item (if stackable) and has Java Edition font
* Game data is now expressed in JSON files (see [https://gist.github.com/Tomcc/c2a3f6b77e9742779920 here] for an example)<ref>{{tweet|_tomcc|659677729470685184|We're starting to express "game data" in JSON files! Now Items use it to see if they're Food or Seeds, but soon they'll be fully data-based.|29 Oct 2015}}</ref>
* Flowers created using bonemeal now depend on the biome
=== Blocks ===
* [[Stonecutter (old)|Stonecutter]]
** Removed the crafting ability of the stonecutter. Items previously craft-able using it are now crafted in the [[crafting table]]
** Unavailable in [[Survival]]. Only available in [[Creative]] as a decorative block
* [[Redstone dust]] is now placeable
* [[String]] is now placeable
* [[Iron door]]s
** Now functional
** Can be crafted in Survival mode
=== Mobs ===
* [[Ghast]]s and [[slime]]s now have a higher spawn rate
* [[Skeleton]]s will run away from [[wolves]]
=== Non-mob [[entities]] ===
; [[Boat]]s
* Are now slightly faster than sprinting
* Will not deplete [[hunger]]
* Players can now {{control|use}} items and {{control|attack}} immediately after they stop rowing</onlyinclude>
== References ==
{{reflist}}
== Navigation ==
{{Navbox Bedrock Edition versions|Alpha}}
[[de:Pocket Edition Alpha 0.13.0 build 1]]
[[es:Pocket Edition v0.13.0 alpha build 1]]
[[fr:Version portable Alpha 0.13.0 build 1]]
[[ja:Pocket Edition v0.13.0 alpha build 1]]
[[pt:Edição Pocket v0.13.0 alpha build 1]]
[[zh:携带版0.13.0.b1]]

View file

@ -0,0 +1,232 @@
{{Infobox version
|title=v0.15.90 alpha build 1
|vernum=v0.16.0 alpha build 1
|edition=Pocket Edition
|image=Pocket Edition 0.16.0 build 1.png
|internal=0.15.90
|type=Build
|parent=v0.16.0 alpha
|date=August 29, 2016
|prevparent=v0.15.10 alpha
|next=v0.16.0 alpha build 2
|nextparent=v0.16.1 alpha
}}<onlyinclude>
'''v0.16.0 alpha build 1'''<ref>http://pocketbeta.minecraft.net/2016/08/changelog-what-is-new-in-0160-update.html</ref> (labelled '''v0.15.90 alpha build 1''' in-game and '''0.15.90''' internally) is the first build version released for [[Pocket Edition v0.16.0 alpha|v0.16.0]], also known as the [[Boss Update]]. This build accidentally included several features from [[Minecraft Education|Education Edition]] which were quickly removed in the next build.
VR bug fixes in this update were later added to [[Pocket Edition v0.15.10 alpha|v0.15.10]].<ref>https://web.archive.org/web/0/https://www.mojang.com/2016/10/fearsome-fixes-the-spooky-01510-changelog-for-pocket-win-10/</ref>
==Additions==
===General===
* Ability to customize keyboard controls.
* Added search tab to [[creative inventory]] (Win 10 only).
* Added mouse UI sensitivity slider in VR options (Win 10 Rift only).
* New UI for options menu.
* More options.
* Music option
* {{Version exclusive}}: Toggle Crouch.
* Added warning before exiting the game.
=== Commands ===
<div class="list-style-none" style="-moz-column-width:18em;-webkit-column-width:18em;column-width:18em">
* {{cmd|ability}} <span style="color:red;">Because it is an Education Edition feature, it is not available in normal gameplay</span>
* {{cmd|clearfixedinv}} {{Version exclusive}}
* {{cmd|clone}}
* {{cmd|deop}}
* {{cmd|execute}}
* {{cmd|fill}}
* {{cmd|gamemode}}
* {{cmd|gamerule}}
* {{cmd|give}}
* {{cmd|help}} (with alias {{cmd|?}})
* {{cmd|kill}}
* {{cmd|list}}
* {{cmd|op}}
* {{cmd|say}}
* {{cmd|setblock}}
* {{cmd|setfixedinvslot}} {{Version exclusive}}
* {{cmd|setworldspawn}}
* {{cmd|spawnpoint}}
* {{cmd|summon}}
* {{cmd|tell}} (with aliases {{cmd|msg}}, {{cmd|w}})
* {{cmd|testforblocks}}
* {{cmd|time}}
* {{cmd|toggledownfall}}
* {{cmd|tp}} (with alias {{cmd|teleport}})
* {{cmd|testforblock}}
* {{cmd|weather}}
* {{cmd|wsserver}} {{Version exclusive}}
* {{cmd|xp}}
</div>
===World Generation===
* [[Ocean monuments]]
=== Blocks ===
* [[Sea Lantern]]
* [[Prismarine]]
* [[Wet Sponge]]
* {{Version exclusive}} [[File:Border BE1.png|32px]] [[Border block]]
** A red block that has a block model similar to [[cobblestone wall]].
** Can only be broken using [[commands]].
** Invisible blocks possibly appear on top and bottom of the border block, and they are unbreakable.
*** Will break if the border block is broken.
** Can be obtained using {{cmd|give}}.
*** Obtained item doesn't do anything.
** Can be placed using {{cmd|setblock}}.
** Red particles appear on top of the block and fly upwards.
* {{Version exclusive}} [[Chalkboard]]
** Has unused item form textures. [[File:Chalkboardsmall.png|32px]][[File:Chalkboardmedium.png|32px]][[File:Chalkboardlarge.png|32px]]
** Is listed in autocomplete of {{cmd|setblock}} as 2D Wooden Planks icon.
** Can only be placed using {{cmd|setblock}}. However, it says Block placed, but actually, nothing will be placed.
===Items===
* [[Prismarine Crystals]]
* [[Prismarine Shard]]
* [[Spawn Egg]]s
** [[Guardian]]
** [[Elder Guardian]]
*** Unavailable in [[creative]] [[inventory]]
** {{Version exclusive}}: [[File:Spawn npc.png]] [[NPC]] (Spawn egg will work if the {{cmd|ability}} [[Commands|command]] with the world builder is set to true.)
* {{Version exclusive}}: [[File:Portfolio.png|19px]] [[Book#Trivia|Portfolio]]
** Can be obtained using commands.
** Has a GUI that doesn't do anything.
===Mobs===
* [[Guardian]]
* [[Elder Guardian]]
** {{Version exclusive}}: Doesn't have a [[spawn egg]].
* {{Version exclusive}}: [[NPC]]
** Looks like a [[villager]], currently doesn't do anything and can be spawned with [[commands]] ({{cmd|summon npc ~ ~ ~}})
* {{Version exclusive}}: [[Agent]]
** Can't be spawned
==Changes==
===General===
* Performance improvements.
* Skin picker no longer shows the silhouette of the skins behind it when choosing a custom skin.
* Tweaked mouse sensitivity for vertical vs. horizontal motion in UI in Rift (Win 10 Rift only).
* Increased maximum view distance for capable GPUs (Win10 and EDU only).
* Tweaked the clock texture, so it has all the correct pixels.
* Old world type [[option]]
** Not shown anymore.
** Old worlds created earlier still can be made infinite.
===Items===
* [[Bucket]]
** New sound when using.
* [[Map]]s
** {{Version exclusive}}: Now have different colors for different biomes.
* [[Camera]]
** Now has a block form in inventory [[File:Camerafront.png]] [[File:Cameraside.png]] [[File:Camera top.png]] [[File:Cameraback.png]] but placing it spawns the entity
** Block can be placed with commands like {{cmd|setblock}} and {{cmd|fill}} (Block ID is <code>minecraft:camera</code>)
** "Take Picture" button now works.
* [[Cocoa beans]]
** No longer has a crafting recipe.
===Blocks===
* [[Sponge]]
** Readded to survival mode.
** Now can absorb water.
** Now uses Java Edition 1.8 texture.
* [[Bed]]
** Now have sound when placed.
* [[Monster egg]]s
** Added to the [[Creative inventory]].
* [[Grass Path]]
** Added sounds when making.
* [[Furnace]]
** Better description (Input, Fuel, Result) for devices that do not use controller input.
===Mobs===
* [[Squid]]
** {{Version exclusive}}: Added new sounds.
==Fixes==
{{Fixes|project=MCPE|fixedin=0.15.90.0|otherissuescount=41
|;From released versions before v0.16.0
|MCPE-9096|Cannot place beds on top half slabs anymore
|MCPE-9669|Creative inventory Mundane potion duplicate bug
|MCPE-9846|Mobs wearing armor drop that armor 100% of the time
|MCPE-10077|Incorrect sounds on beds
|MCPE-11013|Autojump allows the player to jump over fences and cobblestone walls
|MCPE-11214|Player can go through solid block walls and fences using a boat
|MCPE-11241|Moving fuel into the furnace draws units from the first stack touched instead of from the one the player taps
|MCPE-12922|Water is invisible when the player reloads the world
|MCPE-13640|Maps blink red when a player takes damages
|MCPE-13802|Clocks in item frames have extra pixels
|MCPE-13891|Hoppers suck item entities only one at a time
|MCPE-13966|Mobs do not drop spawned equipment
|MCPE-14250|Beds don't make sounds when placing them
|MCPE-14529|Boats placed halfway inside a wall shake violently
|MCPE-14648|Skeletons can shoot arrows without facing the player
|MCPE-14761|Doors act as tools
|MCPE-14801|Furnace texture bug
|MCPE-15034|Villagers get stuck facing 90°
|MCPE-15268|Blocks are blinking on a piston
|MCPE-15586|The void below bedrock is a bottomless pit
|MCPE-15594|Tripwire not triggered by a player in a minecart or pig riding but does for horses and boats
|MCPE-15696|Lead turn red when the leashed mob getting hit
|MCPE-15983|Using A Bed Whilst Riding A Horse / Boat, etc. Does Not Dismount Player
|MCPE-16529|Chest UI is not accessible when mounted on a pig, boat or minecart.
|MCPE-16649|NPC Spawn egg does not spawn anything unless used in a monster spawner
}}
;Others
* To zoom out maps, the original map needs to be placed in the crafting grid center.
* Fixed crashes on some Android devices.
* Fixed a crash upon world load in Gear VR edition.
* Frame rate no longer affects the sensitivity of mouse and controller turning in-game.
* Fixed a game crash on FireTV that happened after a few minutes of gameplay.
* Fixed a crash that occasionally happened when a player would try to access Realms settings.
* Fixed a connection issue failure with players trying to connect to Realms from Android, Kindle, iOS, or Gear VR.
* Transitioning from Living Room mode to Immersive mode while riding an animal no longer makes the animal look like it's being x-rayed (Win 10 Rift only).
* Boats have shadows
* Fixed a crash when breaking a door near a villager during the night.
* No longer informs the player when they join a game.
* If the player is in a game session where they can't invite friends, the invite friends button won't appear in the pause screen anymore.
* Fixed a rogue pixel on the back of the Cake Maniac skin's head.
* Fixed x-ray effects when hitting a boat in survival.
* Water no longer continues to flow from frozen water source blocks.
* The player can now sprint forever in creative mode.
* Pressing enter opens the chat window.
* Opening the chat window and then quickly typing is no longer an issue- no more lost letters!
* The player won't shake randomly when dismounting a vehicle while they're in a block or closing a trapdoor while standing in its space.
* Fixed the attack range of hostile mobs when they are in a boat.
* Baby mooshrooms no longer freeze when the player tries to use shears on them.
* The player no longer gets immediately dismounted when interacting with horses or pigs while sneaking.
* Fixed a crash when a filled map is selected.
* Fixed a crash when opening a crafting table in Creative mode.
* Fixed some mobs not burning in sunlight.
* Fixed a bug where an Enderman riding in a minecart could activate a stone pressure plate placed next to a diagonal minecart track.
* Mobs that die while riding a minecart get removed from the minecart.
* Blazes attack players based on the host game/server's game mode.
* Skeletons no longer manage to fire arrows from their sides.
* Cursor is now fully visible when drawing back a [[bow]] and [[arrow]]s fly according to where the cursor is pointed. (Gear VR edition & Win 10 Rift only)
* Gray icon representing horse armor & saddle now changes depending on what texture pack the player uses.
* No more floating torches under ceilings.
* Nether wart growth textures were off by one stage- now fixed.
* "Toggle immersive mode" message no longer appears on non-VR platforms.
* Controller input is now recognized in VR even if the VR window does not have windows focus (Win 10 Rift only).
* The player can now see a pig's health.
* Fixed some assorted bugs relating to skin, texture pack & full game purchases not being recognized properly.
* Pressing the Z button to invoke the status effect window now works.
* Fixed an issue where breaking a bed wouldn't reset a player's spawn point.
* When riding a pig/horse, the animal's health now displays correctly when the animal is poisoned.
* Sugar cane can no longer be pulled by sticky pistons.</onlyinclude>
== References ==
{{reflist}}
== Navigation ==
{{Navbox Bedrock Edition versions|Alpha}}
[[de:Pocket Edition Alpha 0.16.0 build 1]]
[[es:Pocket Edition v0.16.0 alpha build 1]]
[[fr:Version portable Alpha 0.16.0 build 1]]
[[ja:Pocket Edition v0.16.0 alpha]]
[[pt:Edição Pocket v0.16.0 alpha build 1]]
[[ru:Alpha 0.16.0 build 1 (Pocket Edition)]]
[[zh:携带版0.16.0.b1]]

View file

@ -0,0 +1,160 @@
{{DISPLAYTITLE:Java Edition Classic 0.24_SURVIVAL_TEST}}
{{for|developmental versions of 0.24|{{PAGENAME}}/Development}}
{{Lost version|commonfake=1}}
{{Infobox version
|title=0.24_SURVIVAL_TEST
|image=Classic 0.24_SURVIVAL_TEST.png
|edition=java
|prefix=Classic
|date=September 1, 2009
|clientdl=Client not archived
|serverdl=No corresponding server
|prevparent=0.0.23a
|prev=0.0.23a_01
|next=0.24_SURVIVAL_TEST_01
|nextparent=0.25 SURVIVAL TEST
}}
'''0.24_SURVIVAL_TEST'''<ref name="creeper">{{ytl|wH0AxeY_r2Y|Minecraft Survival Mode - Reaper Creeper|Telkir|September 1, 2009}}</ref> is a version of [[Java Edition Classic]] and the first version of [[Survival Test]], released on September 1, 2009,<ref>[[WordOfNotch:177210159|"Survival Mode Test Released"]] [[The Word of Notch]]</ref> at 16:54 UTC.<ref>[[#logs|IRC logs]]: "''A11:54:53 <08Notch> http://www.minecraft.net/survivaltest/''" (16:54:53 UTC)</ref>
== Additions ==<!--Please do NOT add a additions table here-->
=== Entities ===
; [[File:Sign Entity.png|x32px]] [[Sign]]s<ref>{{ytl|QAARP2qdtww|Minecraft Survival development update|Internet Video Archive}}</ref>
* Added as an [[entity]].
* Can be spawned by pressing {{Key|B}}.
* Cannot be edited.
* Always says: "This is a test of the signs. Each line can be 15 chars!".
=== Items ===
; [[File:Arrow JE1.png|x32px]] [[Arrow]]s
* Can be shot by pressing {{Key|Tab}}.
** Take 7 shots to kill [[mob]]s. Deal {{hp|3}} damage.
=== Mobs ===
; [[File:Creeper JE1.png|x32px]] [[Creeper]]s
* Are a lot darker than current.
** Return to normal when hit.
* [[Explode]] on death.
* Deal {{hp|2}} to {{hp|6}} damage upon hit and up to {{hp|12}} damage upon death in its explosion.{{verify|type=untestable}}
* They make melee attacks instead of blowing up near the [[player]].
; [[File:Pig JE1.png|x32px]] [[Pig]]s
* The first [[passive mob]] to be added into the game.
; [[File:Skeleton JE1.png|x32px]] [[Skeleton]]s
* Deal {{hp|1}} to {{hp|6}} damage.
; [[File:Zombie JE1.png|x32px]] [[Zombie]]s
* Deal {{hp|1}} to {{hp|7}} damage.
=== Gameplay ===
; [[Survival]] mode
; Score
* Score can only be seen after death.
* Killing [[zombie]]s give 100 points.
* Killing [[skeleton]]s give 100 points.
* Killing [[creeper]]s give 250 points.
* Killing [[pig]]s give 10 points.
; [[Armor]]
* Visual feature only, provides no protection.
* Can only be worn as a [[helmet]] or [[chestplate]] by zombies and skeletons.
; [[Particles]]
* Re-added sapling particles, although they are now darker than before.{{verify|type=untestable}}
; [[Drops]]
* Blocks and mobs are now able to drop items:
** Most blocks drop themselves, with exceptions:
** [[Leaves]] drop saplings ({{frac|1|10}} chance).
** [[Grass block]] drops [[dirt]].
** [[Log]]s drop 3-5 planks.
=== General ===
; [[Options]] menu
* Bobbing and the "View Bobbing" option added.
* 3D anaglyph added.
* Level size options under "Generate New Level" are now closer together.
== Changes ==
=== Mobs ===
; General
* [[Mob]]s and [[player]]s jump back and flash white when taking damage and have a dying animation.
* Enemies fall over when killed.
; [[Human]]
* Changed skin from [[File:Steve Revision 1.png|x32px]] to [[File:Steve_JE2.png|x32px]], adding second layer of hair.
* Can no longer be spawned by pressing {{key|G}}.
=== Gameplay ===
; [[Controls]]
* Right-click to build and left-click to [[mining|mine]].
* The [[player]] can auto-jump again.
* Player reach reduced by 1 block.
; Block outline
* White block selection box removed.
** As a result of this, [[sapling]]s and [[flower]]s no longer disappear if selected in darkness.
=== Items ===
; [[Mushroom]]s
* Brown mushrooms heal {{hp|5}} when eaten.
* Red mushroom deplete {{hp|3}} when eaten.
* Mushrooms no longer decay in darkness.
; [[Sapling]]
* Now grows into a tree if there is enough space and it is placed on grass.
=== World generation ===
; General
* New level generator.
** More cliffs.
** Longer and narrower [[caves]].
*** The deeper down in the world, the bigger the caves are.
** A layer of lava now generates above the bedrock layer.<ref>[[#logs|IRC logs]]: "''P1:23:30 <Drakim> yeah, guys, the bottom is all lava''"</ref>
=== General ===
; Performance
* Faster rendering.
== Removed ==
* [[Creative]] mode.
* Liquid raising, although [[sand]] and [[gravel]] still fall through liquids.
== Bugs ==
* If a creeper blows up a [[liquid]], the liquid drops itself.<ref name="creeper" /><ref>[[#logs|IRC logs]]: "''A11:57:36 <Sharkz> creeper took out loads of water and it dropped water blocks i can place to raise water level''"</ref>
* Cracking animation only shows on one side of a block.<ref>[[#logs|IRC logs]]: "''A11:59:28 <liq3> Notch: Cracks are only drawning on one face. :(''"</ref>
* Skeletons can enter 1-block high holes.{{verify|type=untestable}}
* Minecraft crashed upon loading for some users.<ref>[[#logs|IRC logs]]: "''P12:00:12 <darkparadox> it says the game broke :\''"</ref>
* OpenGL invalid value bug.<ref>[[#logs|IRC logs]]: "''P12:02:40 <Zarigani> OpenGL Exception: invalid value 1281''"</ref>
* Arrows do not deal damage after flying for more than 1 second.
* Middle-clicking a block (pick-block) adds it into the player's [[inventory]] even when they do not yet have that block.<ref>[[#logs|IRC logs]]: "''P12:47:58 <AnnihilatorBeta> if you middle mouse click on a block, you'll get it added to your inventory'' [...] ''P12:52:31 <Mikeh> I had 42 soil chunks, Middle clicked a mushroom and now I have 42 red mushrooms, Wooooo''"</ref>
** Only works on blocks that could previously be copied.<ref>[[#logs|IRC logs]]: "''P12:53:08 <Snowman> You can't clone ore'' [...] ''P12:53:47 <setveen> Well notch, not really a problem with survivor, but when you middle click an admin block, nothing happenes''"</ref>
** Doing so replaces the block type of whatever you are holding, but not its amount.
* Placing a block at the build limit consumes the block, destroying it without placing anything.
* Looking at glass no longer makes glass textures directly behind it disappear.{{verify|type=untestable}}
* Walking on the very edge of a block causes the amount of sounds required to play to build up. Once the player stands on a block, those sounds play every 0.125 seconds.
== Gallery ==
<gallery>
Classic 0.24 SURVIVAL TEST Screenshot 1.jpg|The world flooded with lava by a player.
Classic 0.24 SURVIVAL TEST Screenshot 2.jpg|A captured pig.
Classic 0.24 SURVIVAL TEST Screenshot 3.jpg|Mushrooms generated in a cave.
Classic 0.24 SURVIVAL TEST Screenshot 4.png|"Game over!" screen.
0.24_SURVIVAL_TEST_thumbnail.jpg|Thumbnail from a dead 0.24st video.
</gallery>
== References ==
* {{anchor|logs}}[https://archive.org/download/Minecraft_IRC_Logs_2009/DBN-IRC-Logs/ IRC logs] on Archive.org; #minecraft.20090901.log. September 1, 2009 (UTC&minus;5).
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|Classic}}
[[es:Java Edition Classic 0.24 SURVIVAL TEST]]
[[ja:Java Edition Classic 0.24 SURVIVAL TEST]]
[[lzh:爪哇版古典版〇點二四生測]]
[[pt:Edição Java Classic 0.24 SURVIVAL TEST]]
[[ru:Classic 0.24 SURVIVAL TEST (Java Edition)]]
[[zh:Java版Classic 0.24 SURVIVAL TEST]]

271
wiki_backup/0.5.0 alpha.txt Normal file
View file

@ -0,0 +1,271 @@
<div class ="mobileonly">{{relevant guide|Bedrock Edition guides/0.5.0}}</div>
{{Infobox version
| title = v0.5.0 alpha
| vernum = 0.5.0
| edition = Pocket Edition
| image = Pocket Edition v0.5.0 alpha in game.jpg
| image2 = Pocket Edition v0.5.0 alpha.png
| date = '''Android, iOS''': November 15, 2012<br>'''Fire''': Unknown
| clientdl = [https://archive.org/download/MCPEAlpha/PE-a0.5.0.apk Original]<br/>
[https://archive.org/download/MCPEAlpha/PE-a0.5.0j.apk J-version]<br/>
[https://archive.org/download/MCPEAlpha/PE-a0.5.0-1-x86.apk Original (x86)]<br/>
[https://archive.org/download/MCPEAlpha/PE-a0.5.0-2-x86.apk Reupload (x86)]<br/>
Amazon Appstore client unavailable
| prevparent = v0.4.0 alpha
| prev = v0.4.0 alpha rev 3
| nextparent = v0.6.0 alpha
}}<onlyinclude>
<div class ="nomobile">{{relevant guide|Bedrock Edition guides/0.5.0}}</div>
'''v0.5.0 alpha''' is a major update to ''[[Pocket Edition|Minecraft: Pocket Edition]]'' that was released on Android and iOS on November 15, 2012<ref>Announced here: https://twitter.com/jbernhardsson/status/269075234374705152 and released on iOS (as shown by the block sounds) on the same day: https://youtu.be/rYrv_QSo2KU</ref><ref>http://web.archive.org/web/20130128073657/https://play.google.com/store/apps/details?id=com.mojang.minecraftpe</ref> and on an unknown date on Fire.<ref>http://web.archive.org/web/20121119021216/http://www.amazon.com:80/Mojang-Minecraft-Pocket-Edition/dp/B00992CF6W</ref> It adds notable features, such as [[melon]]s, [[painting]]s, [[glowstone]], the [[Nether reactor]] as well as other changes and fixes.
This is the last version to support Android 2.1 and 2.2.
== Additions ==
{{Additions table
|Nether Reactor Core
|Initialized Nether Reactor Core
|Finished Nether Reactor Core
|Glowing Obsidian
|Glowstone
|Melon
|Cobweb
|Oak Sign
|Melon Seeds
|Melon Slice
|Painting
|Painting Albanian
|Painting de_aztec
|Painting de_aztec
|Painting Target Successfully Bombed
|Painting Kebab med tre pepperoni
|Painting Paradisträd
|Painting Wasteland
|Painting Wanderer
|Painting Bonjour Monsieur Courbet
|Painting Fighters
|Painting The Pool
|Painting Seaside
|Painting sunset_dense
|Painting Bust
|Painting Match
|Painting Pointer
|Painting Skull and Roses
|Painting The Stage Is Set
|Painting The void
|Painting Graham
|Painting Creebet
|Painting Kong
|Painting Mortal Coil
|Painting Pigscene
|Painting Earth
|Painting Fire
|Painting Water
|Painting Wind
}}
=== Blocks ===
;{{Version exclusive}}&#58; [[File:Nether Reactor Core BE1.png|width=32x32]][[Nether reactor core]]
* Used to create a Nether reactor.
* Can be crafted with 3 diamonds and 6 iron ingots.
;{{Version exclusive}}&#58; [[File:Glowing Obsidian BE1.png|width=32x32]][[Glowing obsidian]]
* Light-emitting block that is created from the conversion of blocks that make up a Nether reactor.
* Drops regular obsidian when mined.
;[[File:Glowstone JE2 BE1.png|width=32x32]][[Glowstone]]
* A light-emitting block that can be crafted with 4 glowstone dust.
;[[File:Melon JE1 BE1.png|width=32x32]][[Melon]]s
* A fruit block that grows from a fully-grown melon stem.
;[[File:Cobweb JE1 BE1.png|width=32x32]][[Cobweb]]s
* Are currently unobtainable.
;[[File:Oak Sign (0) JE2.png|width=32x32]][[Sign]]s
* Are currently unobtainable.
* Cannot be written on.
;[[File:Grass Block (item) BE3.png|width=32x32]][[grass_carried]]
* Used to store the inventory icon for [[grass block]]s.
* Is not obtainable by normal means.
=== Items ===
;[[File:Melon Seeds JE1 BE1.png|width=32x32]][[Melon seeds]]
* Can be used to grow melon plants.
;[[File:Melon Slice JE1 BE1.png|width=32x32]][[Melon slice]]s
* A food item that can be eaten by the player.
=== Mobs ===
;[[File:Zombified Piglin BE1.png|width=51x51]][[Zombie pigmen]]
* Undead, hostile mobs that spawn from nether reactors.
* Missing the top of their head layer.
=== Non-mob entities ===
;[[File:Wasteland.png|width=45x45]][[Painting]]s
* Decorative entities that hang on walls.
=== Gameplay ===
;{{Version exclusive}}&#58; [[Nether reactor]]
* Created by placing [[cobblestone]] and [[blocks of gold]] in a 3×3 area around a nether reactor core.
* On initialization, a nether spire generates around it. The blocks used for the reactor, excluding the core, are replaced with glowing obsidian over the next few seconds, starting with the cobblestone.
* After initialization, three [[zombie pigmen]] are spawned in, and a 45 second spawn cycle begins. The following items are able to spawn during this cycle:
** [[Glowstone dust]]
** [[Cacti]]
** [[Sugar cane]]
** [[Brown mushroom]]s
** [[Red mushroom]]s
** [[Melon seeds]]
** [[Arrow]]s
** [[Bone]]s
** [[Book]]s
** [[Bow]]s
** [[Bowl]]s
** [[Door]]s
** [[Feather]]s
** [[Painting]]s
** [[Bed]]s
* Once the spawn cycle ends, the time of day is set to night, and the reactor is replaced with a 3×3×3 box of obsidian containing the core.
;{{Version exclusive}}&#58; [[Nether spire]]
* A huge structure consisting of obsidian that generates when a Nether reactor is activated.
* Holes form on the outside of it once the Nether reactor's spawn cycle ends.
; [[File:Sneaking Steve.png|width=55x55]][[Sneaking]]
* Slows the player down and prevents them from falling off of blocks.
* Currently only available on the Xperia PLAY gaming console.
=== General ===
* A new x86 compile have been added for Android in order to utilize full performance & capabilities of x86 processors used by certain Android devices, notably some pre-2016 Asus phones and tablets.<ref>The x86 compile can be downloaded with the download list above.</ref>
== Changes ==
=== Blocks ===
;[[Bed]]s
* Are now easier to get out of.
** Added a ''Leave Bed'' button that lets the player exit the bed.
* {{Version exclusive}}: Now restore health when slept in.
;[[Farmland]]
* Now turns back to dirt if the player or any mob falls onto it from 1 block or more.
;[[Sugar cane]]
* Can now be grown on sand.
;[[Mushroom]]s
* Are now able to spread.
* Can now only be generated or placed in areas with low light, making them significantly less common.
;[[Grass block]]
* Inventory icon changed from [[File:Grass Block (item) BE2.png|32px]] to [[File:Grass Block (item) BE3.png|32px]].
=== Items ===
;[[Glowstone dust]]
* Is now obtainable in Survival mode via the nether reactor.
* Can be used to craft glowstone.
;[[Apple]]s
* Now restore {{hp|4}} instead of {{hp|2}} when eaten.
;[[Bread]]
* Now restores {{hp|5}} instead of {{hp|2}} when eaten.
;[[Mushroom stew]]
* Now restores {{hp|8}} instead of {{hp|4}} when eaten.
;[[Raw chicken]]
* Now restores {{hp|2}} instead of {{hp|1}} when eaten.
;[[Cooked chicken]]
* Now restores {{hp|6}} instead of {{hp|3}} when eaten.
;[[Raw beef]]
* Now restores {{hp|3}} instead of {{hp|1}} when eaten.
;[[Steak]]
* Now restores {{hp|8}} instead of {{hp|4}} when eaten.
;[[Raw porkchop]]s
* Now restore {{hp|3}} instead of {{hp|1}} when eaten.
;[[Cooked porkchop]]s
* Now restore {{hp|8}} instead of {{hp|4}} when eaten.
=== Mobs ===
; [[Camera]]s
* Are now invisible and use the player [[damage]] sound.
; [[Zombie]]s
* {{Version exclusive}}: Have new animations.
; [[Skeleton]]s
* {{Version exclusive}}: Have new animations.
=== Gameplay ===
;Distance [[fog]]
* Now covers 10% of the render distance instead of 50%.
;[[Health bar]]
* {{Version exclusive}}: is now displayed at the top-left of the screen instead of above the hotbar.
;[[Hotbar]]
* The name of the selected item or block is now displayed over it.
;[[Creative inventory]]
* Additions:
** [[Stone bricks]]
** [[Grass block]]
** [[Glowstone]]
** [[Nether reactor core]]
** [[Painting]]
** [[Melon]]
** [[Melon seeds]]
== Fixes ==
{{Fixes|project=MCPE|fixedin=0.5.0
|;From released versions before 0.5.0
|PE-1|Trapdoors can't be crafted in survival
|PE-2|No description at Smooth stone in crafting bench
|PE-4|The player can't leave their bed when sleeping
|PE-6|No explosion sound when creeper explodes
|PE-7|Seeds drop below grass block when using hoe
|PE-11|Survival bugs: Crop tiles survives farmland destroyed underneath them
|PE-14|When destroying the top half of a bed in creative mode, it give a bed back as a resource
|PE-17|TNT, Flint and Steel and Stone Bricks aren't available in the creative mode inventory
|PE-18|Grass block not available in Creative mode inventory
|PE-20|Food not restoring the right number of hearts
|PE-23|Door Duplication
|PE-27|Not possible to activate peaceful mode
|PE-29|Trapdoors can be placed on transparent blocks like flowers, saplings, glass etc.
|PE-30|Placing door on a farmland will create a floating half-door
|PE-34|Xperia Play: The player can't eat or charge the bow
|PE-46|Torch can be placed on side of fence
|PE-51|Bed: Respawn at the wrong height?
|PE-57|Multiplayer infinity bone meal
|PE-93|Players sleeping in a bed can be pushed off the bed
|PE-105|The player can't exit their bed with split touch controls
|PE-115|Breaking block with torch on it
|PE-134|Can't sleep with my bed like this(picture included)
|PE-160|lava burns character when lava is several blocks away
|PE-172|Stone bricks: Missing description
|PE-189|Missing Fence Sound Effect
|PE-190|Farmland and other plants bug
|PE-216|Steel and flint don't take damage
|PE-218|Bed: Should sleep when pressing the bottom end
|PE-237|Extra Feathers For Player 2
|PE-269|Using an item can sometimes attack animal/player when not facing them
|PE-272|Animals sometimes never respawn in a map
|PE-303|Sleeping at the edge of the map causes the player to spawn really high in the sky after the player dies
|PE-345|Torches Jumping off Fences
|PE-370|Trapdoor placement bug
|PE-382|Player 1 places torches on ground, but player 2 sees them on the wall
|PE-387|Stuck when walking down side of fence when reaching closed gate
|PE-408|Sugarcane is unable to be placed on sand
|PE-422|Crash when loading saved world
|PE-491|Disappearing trapdoors
}}</onlyinclude>
== J-version ==
'''v0.5.0j alpha''' was released on an unknown release date.<ref>https://www.minecraftforum.net/forums/support/minecraft-bedrock-support/1945286-my-mc-pe-is-stuck-on-0-5-0j-alpha</ref> This was the last J-version of Pocket Edition.
== Gallery ==
===Development images===
<gallery>
Pocket Edition v0.5.0 alpha Development paintings.png
Pocket Edition v0.5.0 alpha Development zombie pigman.png
Pocket Edition v0.5.0 alpha Development nether reactor.png
Pocket Edition v0.5.0 alpha Development glowstone.png
Pocket Edition v0.5.0 alpha Development mushroom spreading.png
Pocket Edition v0.5.0 alpha Development melons.png
Pocket Edition v0.5.0 alpha Development zombie pigmen.png
Pocket Edition v0.5.0 alpha Development fog.png
</gallery>
== References ==
{{reflist}}
== Navigation ==
{{Navbox Bedrock Edition versions|Alpha}}
[[cs:Pocket Edition Alpha 0.5.0]]
[[de:Pocket Edition Alpha 0.5.0]]
[[es:Pocket Edition v0.5.0 alpha]]
[[fr:Version portable Alpha 0.5.0]]
[[hu:Pocket Edition v0.5.0 alpha]]
[[pt:Edição Pocket v0.5.0 alpha]]
[[ru:Alpha 0.5.0 (Pocket Edition)]]
[[zh:携带版0.5.0]]

242
wiki_backup/0.6.0 alpha.txt Normal file
View file

@ -0,0 +1,242 @@
{{Infobox version
|title=v0.6.0 alpha
|vernum=0.6.0
|edition=Pocket Edition
|image=v0.6.0 alpha.png
|image2=Pocket Edition v0.6.0 alpha.png
|date=January 30, 2013<ref>https://web.archive.org/web/20130201005440/http://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8</ref>{{verify|prove for android}}
|clientdl='''Google Play:'''<br>[https://archive.org/download/MCPEAlpha/PE-a0.6.0.apk Original]<br>[https://archive.org/download/MCPEAlpha/PE-a0.6.0-x86.apk x86]
|prevparent=v0.5.0 alpha
|next=v0.6.1 alpha
|nextparent=v0.7.0 alpha
}}<onlyinclude>
{{relevant guide|Bedrock Edition guides/0.6 releases}}
'''v0.6.0 alpha''' is a major update to ''[[Minecraft: Pocket Edition]]'' that was released on January 30, 2013. It adds features, such as baby [[animal]]s, [[clouds]], new [[Nether]]-related blocks and items as well as other changes.
This is the first version to drop support for Android 2.1 and 2.2, requiring Android 2.3 or later.
== Additions ==
{{Additions table
|Netherrack
|Nether Bricks
|Block of Quartz
|Chiseled Quartz Block
|Quartz Pillar
|Cracked Stone Bricks
|Mossy Stone Bricks
|Stonecutter BE
|Chiseled Sandstone
|Smooth Sandstone
|Nether Brick Stairs
|Sandstone Stairs
|Stone Brick Stairs
|Quartz Stairs
|Stone Brick Slab
|Leather Cap
|Leather Tunic
|Leather Pants
|Leather Boots
|Chainmail Helmet
|Chainmail Chestplate
|Chainmail Leggings
|Chainmail Boots
|Iron Helmet
|Iron Chestplate
|Iron Leggings
|Iron Boots
|Golden Helmet
|Golden Chestplate
|Golden Leggings
|Golden Boots
|Diamond Helmet
|Diamond Chestplate
|Diamond Leggings
|Diamond Boots
|Nether Brick
|Nether Quartz
}}
=== Blocks ===
; [[File:Netherrack JE2 BE1.png|width=32x32]][[Netherrack]]
* A rock-like block generated by the nether reactor.
; [[File:Nether Bricks JE1 BE1.png|width=32x32]][[Nether bricks]]
* A decorative block that is crafted from nether brick items.
; [[File:Block of Quartz JE1 BE1.png|width=32x32]][[Block of quartz]]
* A decorative block that is crafted from nether quartz.
; [[File:Chiseled Quartz Block (UD) JE1 BE1.png|width=32x32]][[Chiseled quartz block]]
* Not obtainable in Survival mode.
; [[File:Quartz Pillar (UD) JE1 BE1.png|width=32x32]][[Pillar quartz block]]
* Not obtainable in Survival mode.
; [[File:Cracked Stone Bricks JE1 BE1.png|width=32x32]][[Cracked stone brick]]
* Not obtainable in Survival mode.
; [[File:Mossy Stone Bricks JE1 BE1.png|width=32x32]][[Mossy stone brick]]
* Not obtainable in Survival mode.
; {{Version exclusive}}&#58; [[File:Stonecutter (Old) BE1.png|width=32x32]][[Stonecutter (old)|Stonecutter]]
* Used to craft stone-related blocks.
; [[File:Chiseled Sandstone JE1 BE1.png|width=32x32]][[Chiseled sandstone]]
* A decorative variant of sandstone that can be crafted from it.
; [[File:Cut Sandstone JE1 BE1.png|width=32x32]][[Cut sandstone|Smooth sandstone]]
* A decorative variant of sandstone that can be crafted from sandstone slabs.
; [[Stairs]]
* [[File:Nether Brick Stairs (N) JE3 BE1.png|width=32x32]][[Nether brick stairs]]
** {{Version exclusive}}: Does not block light.
* [[File:Sandstone Stairs (N) JE2 BE1.png|width=32x32]][[Sandstone stairs]]
** {{Version exclusive}}: Does not block light.
* [[File:Stone Brick Stairs (N) JE3 BE1.png|width=32x32]][[Stone brick stairs]]
** {{Version exclusive}}: Does not block light.
* [[File:Quartz Stairs (N) JE2 BE1.png|width=32x32]][[Quartz stairs]]
** {{Version exclusive}}: Does not block light.
; [[File:Stone Brick Slab JE1 BE1.png|width=32x32]][[Stone brick slabs]]
* Crafted using stone bricks.
=== Items ===
; [[Armor]]
* A category of items that provides players with varying levels of protection from damage.
* Include five different tiers of [[File:Leather Cap (item) JE1 BE1.png|width=32x32]][[File:Chainmail_Helmet_(item)_JE1_BE1.png|32px]][[File:Iron Helmet (item) JE1 BE1.png|width=32x32]][[File:Diamond Helmet (item) JE1 BE1.png|width=32x32]][[File:Golden Helmet (item) JE1 BE1.png|width=32x32]][[helmet]]s, [[File:Leather Tunic (item) JE1 BE1.png|width=32x32]][[File:Chainmail_Chestplate_(item)_JE1_BE1.png|32px]][[File:Iron Chestplate (item) JE1 BE1.png|width=32x32]][[File:Diamond Chestplate (item) JE1 BE1.png|width=32x32]][[File:Golden Chestplate (item) JE1 BE1.png|width=32x32]][[chestplate]]s, [[File:Leather Pants (item) JE1 BE1.png|width=32x32]][[File:Chainmail_Leggings_(item)_JE1_BE1.png|32px]][[File:Iron Leggings (item) JE1 BE1.png|width=32x32]][[File:Diamond Leggings (item) JE1 BE1.png|width=32x32]][[File:Golden Leggings (item) JE1 BE1.png|width=32x32]][[leggings]], and [[File:Leather Boots (item) JE1 BE1.png|width=32x32]][[File:Chainmail_Boots_(item)_JE1_BE1.png|32px]][[File:Iron Boots (item) JE1 BE1.png|width=32x32]][[File:Diamond Boots (item) JE1 BE1.png|width=32x32]][[File:Golden Boots (item) JE1 BE1.png|width=32x32]][[boots]].
* Leather, iron, diamond, and gold armor pieces can each be crafted with their respective material. Chainmail armor is unobtainable.
* Applying process is similar to smelting: choose from armor on the left and see a preview of the player on the right.
; [[File:Nether Brick JE1 BE1.png|width=32x32]][[Nether brick]]
* [[Smelt]]ed from [[netherrack]] and [[crafted]] into [[nether bricks|nether brick blocks]].
; [[File:Nether Quartz JE1 BE1.png|width=32x32]][[Nether quartz]]
* A smooth, white mineral obtained from the nether reactor.
=== Gameplay ===
; [[Cloud]]s
* Are two-dimensional.
* Can only be seen if fancy graphics is enabled.
== Changes ==
=== Blocks ===
; [[File:Crafting Table JE1 BE1.png|width=32x32]][[Crafting table]]
* The following blocks can no longer be crafted using this block:
** [[Stone slab]]
** [[Cobblestone slab]]
** [[Cobblestone stairs]]
** [[Stone bricks]]
** [[Sandstone]]
** [[Bricks]]
** [[Brick slab]]
** [[Brick stairs]]
; [[File:Stone Brick Slab JE1 BE1.png|width=32x32]][[Slab]]s
* Can now be placed on the top half of blocks.
* Crafting recipes for them give 6 slabs instead of 3.
; [[File:Stone Brick Stairs (N) JE3 BE1.png|width=32x32]][[Stairs]]
* Can now be placed upside-down.
* Now change their shape to join with adjacent stairs.
; [[File:Melon JE1 BE1.png|width=32x32]][[Melon]]s
* Can now be crafted with 9 [[melon slice]]s.
; [[File:Sand JE2 BE1.png|width=32x32]][[Sand]]
* Is now affected by gravity.
; [[File:Gravel (inventory) BE5.png|width=32x32]][[Gravel]]
* Is now affected by gravity.
* Falls upon generation if air generates below it.
; [[File:Oak Sign (0) JE2.png|width=32x32]][[Sign]]s
* Are now obtainable in both Survival and Creative mode.
; [[File:Sandstone Slab JE1 BE1.png|width=32x32]][[Sandstone slab]]s
* Are now obtainable in both Survival and Creative mode.
=== Items ===
; [[File:Leather JE1 BE1.png|width=32x32]][[Leather]]
* Is now obtainable in Survival mode.
=== Mobs ===
; [[Baby animals]]
* Now naturally spawn in new worlds.
; [[Sheep]]
* Can now be colored with [[dye]]s.
* Base model changed from [[File:White Sheep BE1.png|32px]] to [[File:White Sheep BE2.png|32px]].
; [[Cow]]s
* Now drop [[leather]] when killed.
=== Gameplay ===
* For some Android devices only: the way to go to the pause menu is to use (◀) instead of (|=|).
; Distance [[fog]]
* Is now a more vibrant blue color instead of bluish-gray.
* Now covers 40% of the render distance.
* The sky can now be seen through the fog if fancy graphics is enabled.
; [[Hotbar]]
* When holding a slot to toss an item out, the frame of the bar turns green as well.
; D-pad
* Buttons are now textured and are no longer rounded.
* When in flight mode, there is a "wing" icon on the jump button.
* When the up button is held, the left, right, and down buttons fade out, and diagonal left and right buttons become visible.
; [[Nether reactor]]
* Generates the [[nether spire]] with [[netherrack]] instead of [[obsidian]].
* Can now additionally generate [[nether quartz]] during its spawn cycle.
; [[Creative inventory]]
* Additions:
** [[Mossy stone bricks]]
** [[Cracked stone bricks]]
** [[Chiseled sandstone]]
** [[Smooth sandstone]]
** [[Nether bricks]]
** [[Netherrack]]
** [[Sandstone stairs]]
** [[Stone brick stairs]]
** [[Nether brick stairs]]
** [[Quartz stairs]]
** [[Sandstone slab]]
** [[Stone brick slab]]
** [[Block of quartz]]
** [[Pillar quartz block]]
** [[Chiseled quartz block]]
** [[Stonecutter (old)|Stonecutter]]
** [[Sign]]
== Fixes ==
{{Fixes|project=MCPE|fixedin=0.6.0
|;old
|19|Still no fix on Tablet (first Galaxy Tab Froyo firmware 2.2) Survival {{=}} Creative and Creative {{=}} Survival
|143|Doors, trap doors and ladders does not drop correctly in survival when adjacent to destroyed blocks
|356|Blocks placed where ice was don't show up in multiplayer
|406|Drowning on water
|526|Other players can't see the hand shaking animation
|581|Two stone bricks in creative menu
|591|No description for Paintings or Glowstone
|592|Watermelons grow back nearly instantly
|603|Watermelon icon red background
|612|Melon seeds have pumpkin seed sprite
|613|Paintings deflect arrows
|642|Cactus can't grow on sand block near water
|668|Charging the bow breaks pictures
|717|1 melon stem can produce 2-4 melons
|722|Torches when placed underwater do not drop
|779|Paintings cannot be destroyed with L button (Xperia Play)
|883|Wrong sugarcane drop from the reactor and creative mode
|1162|Pixel disappearing bug
}}</onlyinclude>
== Trailer ==
{{yt|4ayLbL3LBnU}}
== Gallery ==
=== Development screenshots ===
<gallery>
Pocket Edition Clouds.png
Pocket Edition Creative Blocks.png
Pocket Edition Slabs.png
Pocket Edition Stairs.png
PE Armor.png
v0.6.0 Dev Armor GUI.png
v0.6.0 Dev Stonecutter.png
v0.6.0 Dev.png
v0.6.0 Landscape.png
Jeb Pocket Edition 0.5.jpg
</gallery>
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Bedrock Edition versions|Alpha}}
[[cs:Pocket Edition Alpha 0.6.0]]
[[de:Pocket Edition Alpha 0.6.0]]
[[es:Pocket Edition v0.6.0 alpha]]
[[fr:Version portable Alpha 0.6.0]]
[[hu:Pocket Edition v0.6.0 alpha]]
[[pt:Edição Pocket v0.6.0 alpha]]
[[ru:Alpha 0.6.0 (Pocket Edition)]]
[[zh:携带版0.6.0]]

View file

@ -0,0 +1,71 @@
{{Infobox version
|title=v0.8.0 alpha build 2
|image=Pocket Edition 0.8.0 build 2.png
|edition=Pocket Edition
|type=Build
|parent=v0.8.0 alpha
|clientdl=[https://archive.org/download/MinecraftPE0.1.0/Minecraft%20PE%200.8.0%20build%202.apk Original]
|date=November 22, 2013
|prevparent=v0.7.6 alpha
|prev=v0.8.0 alpha build 1
|next=v0.8.0 alpha build 3
|nextparent=v0.8.1 alpha
}}<onlyinclude>
'''v0.8.0 alpha build 2''' is the second build and first public build version released for [[Pocket Edition v0.8.0 alpha|v0.8.0]].
== Additions ==
=== Blocks ===
; [[Beetroot]]s
=== Items ===
; [[Beetroot Seeds]]
; [[Beetroot soup]]
=== Entities ===
; [[Minecart]]s
=== General ===
* Brought most textures from Java Edition (e.g., [[gravel]]){{checkthecode|Which ones exactly?}}
* New creative inventory with tabs
== Changes ==
; [[Leaves]]
* Side textures are no longer randomly rotated.
; [[Rail]]s
* Are now craftable with six [[iron ingot]]s and a [[stick]].
; [[Powered rail]]s
* Are now craftable with six gold ingots, a stick, and [[redstone dust]].
== Removals ==
; [[Main menu]]
* Re-removed "Play on Realms" button.
; [[Options]]
* Removed "Show craftable recipes first" toggle.
** Is now always on by default.
* Removed "Smooth lighting" toggle.
** Is now always on by default.
== Fixes ==
{{stub section}}
* With the removal of the smooth lighting toggle, the textures of all blocks in a world are no longer randomly rotated when smooth lighting is off.
* Fixed the displayed names of blocks of coal, [[log|wood]], and wooden slabs.
* Blocks of coal have been given their own numeric ID (173) and no longer override the ID of [[nether bricks]] (112).
** Blocks of coal are no longer listed twice in the creative inventory.
** Blocks of coal can no longer be crafted with four [[nether brick]] items.
** Nether bricks once again have an associated block and item form.
** Blocks of coal from build 1 are automatically converted to nether bricks.
* Fixed the icons for all items in the inventory screen frequently becoming invisible.
* Fixed the appearance of clocks and compasses in the inventory.
* Fixed zombies, skeletons, creepers, and zombie pigmen moving significantly faster on land than intended.</onlyinclude>
== Navigation ==
{{Navbox Bedrock Edition versions|Alpha}}
[[de:Pocket Edition Alpha 0.8.0 build 2]]
[[es:Pocket Edition v0.8.0 alpha build 2]]
[[fr:Version portable Alpha 0.8.0 build 2]]
[[hu:Pocket Edition v0.8.0 alpha build 2]]
[[ja:Pocket Edition v0.8.0 alpha build 2]]
[[pt:Edição Pocket v0.8.0 alpha build 2]]
[[ru:Alpha 0.8.0 build 2 (Pocket Edition)]]
[[zh:携带版0.8.0.b2]]

96
wiki_backup/1.13-pre1.txt Normal file
View file

@ -0,0 +1,96 @@
{{distinguish|Java Edition 1.13-pre10}}
{{Infobox version
|title=Minecraft 1.13-pre1
|image=1.13-pre1.jpg
|image2=Java Edition 1.13-pre1.png
|edition=java
|type=Pre-release
|date=June 4, 2018
|clienthash=f9b3302a997e52af71efc3904d805957430e4820
|jsonhash=a4d5660628eba8143c723ff40112006365d02f1d
|serverhash=e031e58e1d9e745877404530d39775bf9ffa9a56
|parent= 1.13
|prevparent= 1.12.2
|prev= 18w22c
|next= 1.13-pre2
|nextparent =1.13.1
}}
<onlyinclude>
'''1.13-pre1''' is the first pre-release for [[Java Edition 1.13]], released on June 4, 2018.<ref>{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release|June 4, 2018}}</ref>
== Additions ==
* Three brand new pieces of underwater [[music]] by [[C418]] have been added:
** ''[[:File:Shuniji.ogg|Shuniji]]'', ''[[:File:Dragon Fish.ogg|Dragon Fish]]'' and ''[[:File:Axolotl.ogg|Axolotl]]''.
** Their ID for commands is <code>music.under_water</code>.
== Changes ==
* New [[title screen]], with its background showing many of the features that were added in the [[Update Aquatic]].
** The menu panorama uses seed <code>1458140401</code> at coordinates X=1553, Y=58, Z=-1162
* The [[player]] can now tab-complete in [[command block]]s again.
* New top and bottom textures for the 6 [[bark]] blocks.
* New side texture for the [[stripped jungle log]].
* New flapping [[sound]]s for [[phantom]]s.
== Fixes ==
{{fixes|fixedin=1.13-pre1|prefix=Minecraft
|;old
|55800|Successful "{{cmd|setblock air destroy}}" commands give error message and return <code>0</code> for result/success.
|91759|End dimension only: End crystals aren't actually pushed server-side, causing ender crystal location desync.
|92061|Full speed ridden boats generate water splash particles under the boat.
|92408|Arrows / trident move slightly after a second after hitting the target.
|118606|Tame wolf will no longer fight after the boat ride until the server is restarted.
|;dev
|122134|Tab-completion in command blocks no longer works.
|122809|Powered rails and activator rails placed next to a power source do not transmit power to neighboring powered/activator rails which need to change orientation before connecting.
|122940|After executing the {{cmd|/reload}} command, clicking on recipe book recipes does not work.
|122966|Crash on shifting floor with comparator clock.
|124123|Crash upon loading world: Non <code>[a-z0-9/._-]</code> character in path of location: <code>minecraft:Zombie</code>.
|124972|Game crashes during the loading world when creating a super flat world with <code>oceanmonument</code> tag.
|125603|When the trident hit the mobs, it hangs to the side for a second.
|125742|Bark blocks become normal stripped logs, rather than all sides side texture stripped logs.
|125918|namespace functions not able to run in 18w07c.
|127142|Failed to create block entity DUMMY (path of location: <code>minecraft:DUMMY</code>).
|127721|Jittering movement when one player spectates another player.
|129144|Changed piston behavior towards <code>Marker</code>-<code>true</code> armor stands since at latest 18w16a.
|129503|Exception Upgrading 1.7.10 World.
|129504|More Exceptions Upgrading 1.7.10 World (Inventory Wiped?).
|129542|The title screen panorama hasn't been updated with features in Update Aquatic.
|129625|Sea grass changes to air pockets when upgrading from 18w16a to 18w20a+.
|129856|Done button is always disabled in command block minecarts.
|129975|village and pyramid generation bug.
|130140|Blocks not converting correctly from 1.12.2 to current snapshot.
|130463|Sponges do not absorb bubble columns.
|130489|All enchanted books change to protection when fished, reloaded, or upgraded from an old version.
|130521|Leaves placed by the hand disappear if not touching log or bark after a reload.
|;previous
|130677|Minecraft hangs on world quit with "Couldn't load chunk" spamming log.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|rCb-cpNAUzo}}
== Trivia ==
* This pre-release was released on the same day as [[Java Edition 1.16 Pre-release 1|1.16 Pre-release 1]], but two years earlier.
== Gallery ==
<gallery>
Java Edition 1.13-pre1.png|The modified [[main menu]].
1.13-pre1 bark.png|The new top textures of [[bark]].
</gallery>
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13-pre1]]
[[es:Java Edition 1.13-pre1]]
[[fr:Édition Java 1.13-pre1]]
[[ja:Java Edition 1.13-pre1]]
[[nl:1.13-pre1]]
[[pt:Edição Java 1.13-pre1]]
[[ru:1.13-pre1 (Java Edition)]]
[[zh:Java版1.13-pre1]]

127
wiki_backup/1.13-pre2.txt Normal file
View file

@ -0,0 +1,127 @@
{{Infobox version
|title=Minecraft 1.13-pre2
|image=1.13-pre1.jpg
|image2=Java Edition 1.13-pre2.png
|edition=java
|type=Pre-release
|date=June 15, 2018
|clienthash=b833d32e1846989a61c6c3faa40232bb72bd59de
|jsonhash=05ba232797b3cf7fa2ac879624a7b5de1d6651bd
|serverhash=5b312060d457a1f75846afd3935ec3f140da3942
|parent=1.13
|prevparent=1.12.2
|nextparent=1.13.1
|prev=1.13-pre1
|next=1.13-pre3
}}<onlyinclude>
'''1.13-pre2'''<ref>{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 Pre-Release 2|June 4, 2018}}</ref> is the second pre-release for [[Java Edition 1.13]].
== Additions ==
* Added stripped [[bark]] blocks of all 6 types of wood.
* [[Packed ice]] can now be crafted from 9 [[ice]].
{{Crafting
|ignoreusage=1
|A1=Ice
|B1=Ice
|C1=Ice
|A2=Ice
|B2=Ice
|C2=Ice
|A3=Ice
|B3=Ice
|C3=Ice
|Output=Packed Ice}}
* Added <code>glDebugVerbosity</code> to [[options.txt]]
== Changes ==
[[File:Colored info.png|thumb|300x300px|Tooltip info is now colored.]]
* Optimized [[title screen]].
* Reverted the bark block textures from the previous pre-release ([[1.13-pre1]]).
* Various performance optimizations.
* Changed message shown when failing to use a bed to say "You can sleep only at night and during thunderstorms."
; '''[[Inventory]]'''
* [[Item]]s with a rarity value will have their [[hotbar]] tooltips, which are displayed when scrolling over them in the hotbar, displayed as their respective colors when highlighted, rather than just being white.<ref>{{bug|MC-130145}}</ref>
[[File:Skeleton horse fix.png|thumb|250px|The updated texture of the skeleton horse.]]
; '''[[Skeleton horse]]'''
* Updated model to fix minor texture [[wikipedia:z-fighting|z-fighting]], a glitch where textures overlap in an obtrusive and unintentional way.
; '''[[Zombie horse]]'''
* Now sinks in water.
* Updated model to fix extreme texture z-fighting, just like the skeleton horse.
== Fixes ==
{{fixes|fixedin=1.13-pre2|prefix=Minecraft
|;old
| 10632 | Boats show water splashes when falling from high places, even if not in water
| 87129 | Cannot save empty command for command block minecart
| 102403 | Persistent/unchangeable sounds after (re-)opening a world
|;dev
| 121628 | Horse armor textures z-fighting.
| 121714 | Unable to save screenshots and world icons if the path contains non-ASCII characters
| 121832 | Z-fighting on skeleton horse texture
| 122864 | Tamed llamas, donkeys, and mules cannot be named with a name tag
| 123007 | Z-fighting on zombie horse texture
| 123349 | {{cmd|effect give}} with instant effects are being applied for 1.5 seconds if you don't specify the duration
| 123366 | Item right click actions don't work whilst looking at a block in adventure mode
| 123811 | Horses (and llamas, etc) show default name as "HorseChest"
| 124364 | Horse skin and armor textures not applied correctly to horse model
| 125363 | Items fail to remain on surface
| 125744 | Entity predicates for advancements fail if "type" not specified
| 127033 | Items wont float
| 127068 | Plain Shulker Boxes not placed by dispensers
| 127099 | Kelp isn't completely removed when sponge removes the water
| 127111 | Sponges don't work on sea plants
| 127320 | Drowned do not recognize tridents as weapons they can pick up
| 127727 | advancement "monster hunter" can be get when killed zombie horse
| 127921 | Horses' health bars interfere with the air bubble bar.
| 128241 | Dolphins can sit in boats
| 129222 | Certain world configurations force the player to spawn at y{{=}}5
| 129262 | Zombie horses don't sink in water like other undead mobs
| 129338 | Clicking singleplayer freezes the game for a second
| 129374 | Crash on 32 bit JVMs: "Unable to bootstrap datafixers" due to stack overflow
| 129500 | Map displays 1 deep water as dry land.
| 129620 | Mob spawning algorithm is super slow
| 129712 | Team Suffix resets after restarting world
| 129895 | Concrete powder's falling sand entities lose NBT data when upgrading from 1.12.2 to snapshots
| 130014 | When updating villagers trade carved pumpkin instead of pumpkins
| 130059 | Bubble column particles (from falling) have missing texture
| 130145 | Text over the hotbar does not reflect item rarity colors
| 130200 | Items in saved creative toolbars upgrade improperly from 1.12.2 to 1.13-pre1
| 130524 | Beds turn invisible when upgrading from 1.11.2 or below
| 130577 | Armor doesn't always line up with Drowned model
| 130629 | Multiplayer: Crafting table source item amount increasing instead of decreasing
| 130722 | Slime blocks diffuse light
|;previous
| 130779 | Title-Screen Lag High GPU Usage
| 130800 | Normal terracotta disappears from chests when upgrading from 1.12 to 1.13-pre1
| 130858 | Pistons are no longer transparent
| 130936 | Carpets on llamas removed when loading 1.12 map
| 130942 | Errors, warnings and 10 second freeze on loading list of singleplayer worlds
| 130945 | Command tab completion does not work in command blocks with command suggestions off
| 131125 | InhabitedTime set to zero after update from 1.12.2 (Local Difficulty)
| 131155 | Saving structure which has not been saved before logs error "Couldn't load structure"
| 131243 | Comma splice in various messages in language "en_US"
| 131317 | Air meter doesn't instantly reset upon respawning
|;private
| 131152 | Private security issue
| 131153 | Private security issue
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|y4OxPqkot80}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13-pre2]]
[[es:Java Edition 1.13-pre2]]
[[fr:Édition Java 1.13-pre2]]
[[ja:Java Edition 1.13-pre2]]
[[nl:1.13-pre2]]
[[pt:Edição Java 1.13-pre2]]
[[ru:1.13-pre2 (Java Edition)]]
[[zh:Java版1.13-pre2]]

120
wiki_backup/1.13-pre3.txt Normal file
View file

@ -0,0 +1,120 @@
{{Infobox version
|title=Minecraft 1.13-pre3
|image=1.13-pre1.jpg
|image2=Java Edition 1.13-pre3.png
|edition=java
|type=Pre-release
|date=June 21, 2018
|clienthash=94f2e86f94d7d80c19ec1d3d637b1ef2d862be9e
|jsonhash=06c31253996b4de3188705e3d6c33577d1f9a305
|serverhash=5406f31cb5274ae48938851de697b32976ecb499
|parent=1.13
|prevparent=1.12.2
|prev=1.13-pre2
|next=1.13-pre4
|nextparent=1.13.1
}}<onlyinclude>
'''1.13-pre3'''<ref name=1.13-pre3>{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 3|June 4, 2018}}</ref> is the third pre-release for [[Java Edition 1.13]].
== Changes ==
* Major memory usage optimizations.
* The resource pack folder <code>textures/blocks</code> got renamed to <code>textures/block</code>.
* The resource pack folder <code>textures/items</code> got renamed to <code>textures/item</code>.
* Blockstate files.
** <code>"normal"</code> for blocks without block states changed to an empty string (<code>""</code>).
** Item frames now have <code>"map=false"</code> instead of <code>"normal"</code> and <code>"map=true"</code> instead of <code>"map"</code>.
** Model references no longer start at the <code>models/block/</code> folder, but instead at <code>models/</code>.
* The <code>minecraft:overworld</code> Superflat preset has been changed.
== Fixes ==
[[File:1.13-pre3 MC-125644 fix.jpg|300px|thumb|An example of how dispensing bone meal will now generate sea grass.]]
{{fixes|fixedin=1.13-pre3|prefix=Minecraft
|;old
|258|Most text boxes / chat / scroll bars revert when the window changes size, fullscreen mode is toggled, or fullscreened game is tabbed into.
|17851|Blocks requiring any support block (carpets, signs) placed on piston head break when sticky piston retracts.
|31038|Double-tall plants do not cause updates when broken.
|35856|Multiple background /title songs playing at one time / automatic music overlap (not Jukebox music).
|48089|When destroyed, end portal giving "missing texture" particles.
|87587|Server kicks client when executing: {{cmd|title @a title []}} or {{cmd|tellraw @a []}}.
|;dev
|121721|{{cmd|spreadplayers}} for one entity gives huge number as result for average distance.
|121748|{{cmd|data merge}} command feedback when nothing was changed is not meaningful.
|121797|Cursor remains in text fields when clicking on some buttons or scroll lists.
|122282|V-sync automatically turned off each time the game starts.
|122498|Some advancements and recipes are not upgraded when opening world in 17w47+.
|122351|Crash when exiting a world: java.lang.ArrayIndexOutOfBoundsException: -1.
|122538|Iron Golems no longer spawn.
|123011|Scores on scoreboard objectives created with old stats causes scoreboards to not store changes to scoreboard.dat.
|123362|SuccessCount of command blocks use the "result" return value of a command instead of "success".
|124025|Terracotta, spawn egg and entity statistics are lost on world upgrade.
|124174|Game crash when give yourself an item with empty name.
|124325|Nested {{cmd|execute}} commands can only store success/result once.
|124701|"Unknown criteria" (<code>argument.criteria.invalid</code>) is not translated.
|124876|Villagers requesting tools with no damage provided specifically want <code>Damage:0</code>.
|125644|Dispenser filled with bone meal cannot create sea grass.
|126030|Horse saddle texture uses chest texture.
|126038|Observers getting moved in "on" state rather than "off" state.
|126133|Undercover ravines sometimes generate cut off at chunk borders.
|126138|No rain sound in ocean.
|126388|Horse reigns float when not riding horse.
|126809|<code>minecraft:exploration_map</code> loot table function only works on block containers.
|126976|Water adjacent farmland and grass path graphical errors.
|127038|Sea plants generate directly under or cut off by ocean ruins.
|127044|Waterlogged blocks don't move entities if the water in them is flowing.
|127109|Nether caves under lava oceans don't fill up with lava properly.
|127230|Water in waterlogged blocks can be picked up only by clicking on the waterlogged block itself.
|127326|Rain splash particles don't appear on the surface of the water.
|127611|The archived icons are created in the wrong position.
|127720|Baby horses have long necks.
|128071|Desert rabbits were the wrong color, but now they are missing.
|128154|Some waterlogged blocks have rain going through them.
|128237|Conduits, kelp, coral (fans), and tall grass have full hitboxes.
|128558|Swamp Hills (mutated_swampland) biomes have wrong colored water (light yellow).
|128852|Floating lava and soulsand formation caused by nether cave generation.
|129383|Loading 18w16a worlds in 18w19b: <code><nowiki>[WorldGen-Worker-1/ERROR]: Couldn't load chunk</nowiki></code>.
|129526|Grass and ferns don't show up on a map.
|129629|1.13 worlds isn't loading for sometimes.
|129725|All solid blocks can pass light when converting a world from 18w16a to 18w20+.
|129980|Some users cannot use F3-related features properly.
|130020|<code>piston_inventory.json</code> is outside of the block models file.
|130169|Enchanted items with capitals in enchantment ID cause crash (path of location: <code>minecraft:Cookie</code>).
|130374|vSync turns off in fullscreen mode.
|130475|Boats immediately sink when placed on water.
|130486|Side of water and lava not rendered besides non-full-height blocks.
|130554|Waterlogged blocks have a full cube hitbox.
|130615|Using a resource pack with a block model with itself as a parent removes all textures.
|130667|Flowing water freezes in frozen biomes.
|130690|EntityTag for spawn eggs is not working.
|130778|End return portals don't return you to the center End Island.
|;prev
|131343|Crash when clicking on a recipe in the recipe book without sufficient ingredients.
|131344|Texture z-fighting on baby horse legs.
|131416|Conversion of a 2013 world crashes as of 1.13.
|131419|Squids, fish, and dolphins don't suffocate on land.
|131458|Cobwebs don't appear on maps.
|131633|Mobs get stuck on carpet.
|131706|Water doesn't destroy carpet.
|;private
|131154|Resource locations allow empty path pieces<ref name=1.13-pre3/>
|131400|Structure names allow trailing dots for folder names<ref name=1.13-pre3/>
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|lIouO9cGTm8}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13-pre3]]
[[es:Java Edition 1.13-pre3]]
[[fr:Édition Java 1.13-pre3]]
[[ja:Java Edition 1.13-pre3]]
[[nl:1.13-pre3]]
[[pt:Edição Java 1.13-pre3]]
[[ru:1.13-pre3 (Java Edition)]]
[[zh:Java版1.13-pre3]]

72
wiki_backup/1.13-pre4.txt Normal file
View file

@ -0,0 +1,72 @@
{{Infobox version
|title=Minecraft 1.13-pre4
|image=1.13-pre1.jpg
|image2=Java Edition 1.13-pre4.png
|edition=java
|type=Pre-release
|date=June 26, 2018
|parent=1.13
|clienthash=c4a93fea1ea2a1a7886c8f5f66f6d929db53f021
|jsonhash=aca7f5d7d13b996eeaf6f186d208769f18bdb04c
|serverhash=d57007a8722ed645319666fc56b27690054d8363
|prevparent=1.12.2
|prev=1.13-pre3
|next=1.13-pre5
|nextparent=1.13.1
}}<onlyinclude>
'''1.13-pre4'''<ref name=1.13-pre4>{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 4|June 4, 2018}}</ref> is the fourth pre-release for [[Java Edition 1.13]].
== Changes ==
* Updated [[wikipedia:LWJGL|LWJGL]] from version 3.1.2 to 3.1.6.
* [[Biome]] names are now sorted alphabetically in the [[buffet]] menu.
* [[Observer]] behavior reverted from [[1.13-pre3]]: If they are placed by hand, they won't make a redstone pulse.
== Fixes ==
{{fixes|fixedin=1.13-pre4|prefix=Minecraft
|;old
|36030|Music playing despite music / jukebox slider set to OFF.
|126479|Tellraw command only applies team color if using selector to target more than one entity.
|;dev
|121739|Normal players can use player selectors in {{cmd|msg}} command.
|121798|Can only scroll list in superflat preset selection when it is focused.
|121877|{{cmd|execute if}} and {{cmd|execute unless}} on their own give no feedback.
|126162|Waterlogged blocks and bubble columns don't absorb explosion damage.
|126276|When using {{cmd|tellraw}} and selector gets one entity, the hover effect is gone.
|126595|Blue Wither heads are intangible and invincible on the first tick(s?).
|127871|Block tags do not accept #minecraft:<tag> arguments.
|128299|Blocky and fully bright areas appearing underwater.
|128301|Sea lantern light persists.
|128690|Water does not flow sideways when there's no block below it.
|128844|Water doesn't flow when on top of empty waterlogged blocks.
|128926|Wrong observer timings.
|129245|Crash when entering worldsave due to "illegal character".
|130530|Water source block gets destroyed from downwards flowing water.
|130765|fish bounce too slowly on land in superflat world.
|;prev
|131768|Models' predicates are inverted.
|131773|Comparators from command blocks no longer output results properly.
|131805|Observers pulsing after being moved instantly after triggering.
|131825|Enchanted books lose enchantments when upgrading.
|;private
|131849|Duplication bug.<ref name=1.13-pre4/>
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|X_-a_1diA-U|}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13-pre4]]
[[es:Java Edition 1.13-pre4]]
[[fr:Édition Java 1.13-pre4]]
[[ja:Java Edition 1.13-pre4]]
[[nl:1.13-pre4]]
[[pt:Edição Java 1.13-pre4]]
[[ru:1.13-pre4 (Java Edition)]]
[[zh:Java版1.13-pre4]]

View file

@ -0,0 +1,732 @@
{{Infobox version
|title=Minecraft 1.13-pre5
|image=1.13-pre1.jpg
|image2=Java Edition 1.13-pre5.png
|edition=Java
|type=Pre-release
|date=June 28, 2018
|parent=1.13
|clienthash=f3262055c586a075fc84f9d4bc76b3cf1a72d69c
|jsonhash=b5f4b7d67e57a2784204af0c744e6bfb02a5f04f
|serverhash=6d9ede222df5726059aba1b01f99c328bc16f1a5
|prevparent=1.12.2
|prev=1.13-pre4
|next=1.13-pre6
|nextparent=1.13.1
}}<onlyinclude>
'''1.13-pre5'''<ref>{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 5|June 4, 2018}}</ref> is the fifth pre-release for [[Java Edition 1.13]].
== Changes ==
=== General ===
* Upgrade path optics code is now in a separate library, datafixerupper.<ref>https://libraries.minecraft.net/com/mojang/datafixerupper/1.0.3/datafixerupper-1.0.3.pom; https://arxiv.org/ftp/arxiv/papers/1703/1703.10857.pdf for info on optics</ref>
;[[1.13/Flattening|The "Flattening"]]
* Changed some of the names of entities:
{| class="wikitable"
|-
! Previous entity name !! New entity name
|-
| Eye of Ender Signal || {{EntityLink|Eye of Ender}}
|-
| Evocation Fangs || {{EntityLink|Evoker Fangs}}
|}
* Changed some of the names of blocks:
{| class="wikitable"
|-
! Previous block name !! New block name
|-
| Bark || {{BlockLink|Wood}}
|-
| Stripped Bark || {{BlockLink|Stripped Wood}}
|-
| Portal || {{BlockLink|Nether Portal}}
|}
* Changed some of the names of items:
{| class="wikitable"
|-
! Previous item name !! New item name
|-
| Pufferfish Bucket || {{ItemLink|Bucket of Pufferfish}}
|-
| Salmon Bucket || {{ItemLink|Bucket of Salmon}}
|-
| Cod Bucket || {{ItemLink|Bucket of Cod}}
|-
| Tropical Fish Bucket || {{ItemLink|Bucket of Tropical Fish}}
|}
* Renamed a lot of IDs to be more consistent with the game:
{| class="wikitable" style="overflow: scroll;"
|-
! Entity !! Previous ID !! New ID
|-
| {{EntityLink|Experience orb}} || <code>xp_orb</code> || <code>experience_orb</code>
|-
| {{EntityLink|Bottle o' Enchanting}} || <code>xp_bottle</code> || <code>experience_bottle</code>
|-
| {{EntityLink|Eye of Ender}} || <code>eye_of_ender_signal</code> || <code>eye_of_ender</code>
|-
| {{EntityLink|End Crystal}} || <code>ender_crystal</code> || <code>end_crystal</code>.
|-
| {{EntityLink|Firework Rocket}} || <code>fireworks_rocket</code> || <code>firework_rocket</code>
|-
| {{EntityLink|Minecart with Command Block|Command Block Minecart}} || <code>commandblock_minecart</code> || <code>command_block_minecart</code>
|-
| {{EntityLink|Snow Golem}} || <code>snowman</code> || <code>snow_golem</code>
|-
| {{EntityLink|Iron Golem}} || <code>villager_golem</code> || <code>iron_golem</code>
|-
| {{EntityLink|Evoker Fangs}} || <code>evocation_fangs</code> || <code>evoker_fangs</code>
|-
| {{EntityLink|Evoker}} || <code>evocation_illager</code> || <code>evoker</code>
|-
| {{EntityLink|Vindicator}} || <code>vindication_illager</code> || <code>vindicator</code>
|-
| {{EntityLink|Illusioner}} || <code>illusion_illager</code> || <code>illusioner</code>
|-
! Block / Item !! Previous ID !! New ID
|-
| {{ItemLink|Evoker Spawn Egg}} || <code>evocation_illager_spawn_egg</code> || <code>evoker_spawn_egg</code>
|-
| {{ItemLink|Vindicator Spawn Egg}} || <code>vindication_illager_spawn_egg</code> || <code>vindicator_spawn_egg</code>
|-
| {{BlockLink|id=monster spawner|link=Monster Spawner|Spawner}} || <code>mob_spawner</code> || <code>spawner</code>
|-
| {{BlockLink|Nether Portal}} || <code>portal</code> || <code>nether_portal</code>
|-
| {{ItemLink|Tropical Fish}} || <code>clownfish</code> || <code>tropical_fish</code>
|-
| {{ItemLink|Tropical Fish Bucket}} || <code>clownfish_bucket</code> || <code>tropical_fish_bucket</code>
|-
| {{ItemLink|Popped Chorus Fruit}} || <code>chorus_fruit_popped</code> || <code>popped_chorus_fruit</code>
|-
| {{BlockLink|Logs|Wood}} || <code><type>_bark</code> || <code><type>_wood</code>
|-
| {{BlockLink|id=Stripped Logs|Stripped Wood}} || <code>stripped_<type>_bark</code> || <code>stripped_<type>_wood</code>
|-
! Biome !! Previous ID !! New ID
|-
| {{BiomeLink|id=windswept hills|Mountains}} || <code>extreme_hills</code> || <code>mountains</code>
|-
| {{BiomeLink|Swamp}} || <code>swampland</code> || <code>swamp</code>
|-
| {{BiomeLink|id=nether-wastes|Nether}} || <code>hell</code> || <code>nether</code>
|-
| {{BiomeLink|The End}} || <code>sky</code> || <code>the_end</code>
|-
| {{BiomeLink|id=snowy plains|Snowy Tundra}} || <code>ice_flats</code> || <code>snowy_tundra</code>
|-
| {{BiomeLink|Snowy Mountains}} || <code>ice_mountains</code> || <code>snowy_mountains</code>
|-
| {{BiomeLink|Mushroom Fields}} || <code>mushroom_island</code> || <code>mushroom_fields</code>
|-
| {{BiomeLink|Mushroom Field Shore}} || <code>mushroom_island_shore</code> || <code>mushroom_field_shore</code>
|-
| {{BiomeLink|Beach}} || <code>beaches</code> || <code>beach</code>
|-
| {{BiomeLink|Wooded Hills}} || <code>forest_hills</code> || <code>wooded_hills</code>
|-
| {{BiomeLink|Mountain Edge}} || <code>smaller_extreme_hills</code> || <code>mountain_edge</code>
|-
| {{BiomeLink|id=stony shore|Stone Shore}} || <code>stone_beach</code> || <code>stone_shore</code>
|-
| {{BiomeLink|Snowy Beach}} || <code>cold_beach</code> || <code>snowy_beach</code>
|-
| {{BiomeLink|Dark Forest}} || <code>roofed_forest</code> || <code>dark_forest</code>
|-
| {{BiomeLink|Snowy Taiga}} || <code>taiga_cold</code> || <code>snowy_taiga</code>
|-
| {{BiomeLink|Snowy Taiga Hills}} || <code>taiga_cold_hills</code> || <code>snowy_taiga_hills</code>
|-
| {{BiomeLink|id=old growth pine taiga|Giant Tree Taiga}} || <code>redwood_taiga</code> || <code>giant_tree_taiga</code>
|-
| {{BiomeLink|Giant Tree Taiga Hills}} || <code>redwood_taiga_hills</code> || <code>giant_tree_taiga_hills</code>
|-
| {{BiomeLink|id=windswept forest|Wooded Mountains}} || <code>extreme_hills_with_trees</code> || <code>wooded_mountains</code>
|-
| {{BiomeLink|Savanna Plateau}} || <code>savanna_rock</code> || <code>savanna_plateau</code>
|-
| {{BiomeLink|Badlands}} || <code>mesa</code> || <code>badlands</code>
|-
| {{BiomeLink|id=wooded badlands|Wooded Badlands Plateau}} || <code>mesa_rock</code> || <code>wooded_badlands_plateau</code>
|-
| {{BiomeLink|Badlands Plateau}} || <code>mesa_clear_rock</code> || <code>badlands_plateau</code>
|-
| {{BiomeLink|Small End Islands}} || <code>sky_island_low</code> || <code>small_end_islands</code>
|-
| {{BiomeLink|End Midlands}} || <code>sky_island_medium</code> || <code>end_midlands</code>
|-
| {{BiomeLink|End Highlands}} || <code>sky_island_high</code> || <code>end_highlands</code>
|-
| {{BiomeLink|End Barrens}} || <code>sky_island_barren</code> || <code>end_barrens</code>
|-
| {{BiomeLink|The Void}} || <code>void</code> || <code>the_void</code>
|-
| {{BiomeLink|Sunflower Plains}} || <code>mutated_plains</code> || <code>sunflower_plains</code>
|-
| {{BiomeLink|Desert Lakes}} || <code>mutated_desert</code> || <code>desert_lakes</code>
|-
| {{BiomeLink|id=windswept gravelly hills|Gravelly Mountains}} || <code>mutated_extreme_hills</code> || <code>gravelly_mountains</code>
|-
| {{BiomeLink|Flower Forest}} || <code>mutated_forest</code> || <code>flower_forest</code>
|-
| {{BiomeLink|Taiga Mountains}} || <code>mutated_taiga</code> || <code>taiga_mountains</code>
|-
| {{BiomeLink|Swamp Hills}} || <code>mutated_swampland</code> || <code>swamp_hills</code>
|-
| {{BiomeLink|Ice Spikes}} || <code>mutated_ice_flats</code> || <code>ice_spikes</code>
|-
| {{BiomeLink|Modified Jungle}} || <code>mutated_jungle</code> || <code>modified_jungle</code>
|-
| {{BiomeLink|Modified Jungle Edge}} || <code>mutated_jungle_edge</code> || <code>modified_jungle_edge</code>
|-
| {{BiomeLink|id=old growth birch forest|Tall Birch Forest}} || <code>mutated_birch_forest</code> || <code>tall_birch_forest</code>
|-
| {{BiomeLink|Tall Birch Hills}} || <code>mutated_birch_forest_hills</code> || <code>tall_birch_hills</code>
|-
| {{BiomeLink|Dark Forest Hills}} || <code>mutated_roofed_forest</code> || <code>dark_forest_hills</code>
|-
| {{BiomeLink|Snowy Taiga Mountains}} || <code>mutated_taiga_cold</code> || <code>snowy_taiga_mountains</code>
|-
| {{BiomeLink|id=old growth spruce taiga|Giant Spruce Taiga}} || <code>mutated_redwood_taiga</code> || <code>giant_spruce_taiga</code>
|-
| {{BiomeLink|Giant Spruce Taiga Hills}} || <code>mutated_redwood_taiga_hills</code> || <code>giant_spruce_taiga_hills</code>
|-
| {{BiomeLink|id=Modified Gravelly Mountains|Gravelly Mountains+}} || <code>mutated_extreme_hills_with_trees</code> || <code>modified_gravelly_mountains</code>
|-
| {{BiomeLink|id=windswept savanna|Shattered Savanna}} || <code>mutated_savanna</code> || <code>shattered_savanna</code>
|-
| {{BiomeLink|Shattered Savanna Plateau}} || <code>mutated_savanna_rock</code> || <code>shattered_savanna_plateau</code>
|-
| {{BiomeLink|Eroded Badlands}} || <code>mutated_mesa</code> || <code>eroded_badlands</code>
|-
| {{BiomeLink|Modified Wooded Badlands Plateau}} || <code>mutated_mesa_rock</code> || <code>modified_wooded_badlands_plateau</code>
|-
| {{BiomeLink|Modified Badlands Plateau}} || <code>mutated_mesa_clear_rock</code> || <code>modified_badlands_plateau</code>
|-
| {{BiomeLink|Deep Warm Ocean}} || <code>warm_deep_ocean</code> || <code>deep_warm_ocean</code>
|-
| {{BiomeLink|Deep Lukewarm Ocean}} || <code>lukewarm_deep_ocean</code> || <code>deep_lukewarm_ocean</code>
|-
| {{BiomeLink|Deep Cold Ocean}} || <code>cold_deep_ocean</code> || <code>deep_cold_ocean</code>
|-
| {{BiomeLink|Deep Frozen Ocean}} || <code>frozen_deep_ocean</code> || <code>deep_frozen_ocean</code>
|}
* Changed the file paths for some textures:
{| class="wikitable"
|-
! Previous path !! New path
|-
| <code>entity/boat/boat_<type></code> || <code>entity/boat/<type></code>
|-
| <code>entity/endercrystal/endercrystal</code> || <code>entity/end_crystal/end_crystal</code>
|-
| <code>entity/endercrystal/endercrystal_beam</code> || <code>entity/end_crystal/end_crystal_beam</code>
|-
| <code>entity/illager/fangs</code> || <code>entity/illager/evoker_fangs</code>
|-
| <code>entity/llama/llama</code> || removed
|-
| <code>entity/llama/llama_<variant></code> || <code>entity/llama/<variant></code>
|-
| <code>entity/llama/decor/decor_<color></code> || <code>entity/llama/decor/<color></code>
|-
| <code>entity/wither/wither_invul</code> || <code>entity/wither/wither_invulnerable</code>
|}
* Changed the names of some sound events:
{|class="wikitable"
! Old !! New
|-
| <code>ambient.underwater.loop.additions.ultrarare</code>
| <code>ambient.underwater.loop.additions.ultra_rare</code>
|-
| <code>block.bubble_column.bubble_column_upwards_ambient</code>
| <code>block.bubble_column.upwards_ambient</code>
|-
| <code>block.cloth.break</code>
| <code>block.wool.break</code>
|-
| <code>block.cloth.fall</code>
| <code>block.wool.fall</code>
|-
| <code>block.cloth.hit</code>
| <code>block.wool.hit</code>
|-
| <code>block.cloth.place</code>
| <code>block.wool.place</code>
|-
| <code>block.cloth.step</code>
| <code>block.wool.step</code>
|-
| <code>block.enderchest.close</code>
| <code>block.ender_chest.close</code>
|-
| <code>block.enderchest.open</code>
| <code>block.ender_chest.open</code>
|-
| <code>block.metal_pressureplate.click_off</code>
| <code>block.metal_pressure_plate.click_off</code>
|-
| <code>block.metal_pressureplate.click_on</code>
| <code>block.metal_pressure_plate.click_on</code>
|-
| <code>block.note.basedrum</code>
| <code>block.note_block.basedrum</code>
|-
| <code>block.note.bass</code>
| <code>block.note_block.bass</code>
|-
| <code>block.note.bell</code>
| <code>block.note_block.bell</code>
|-
| <code>block.note.chime</code>
| <code>block.note_block.chime</code>
|-
| <code>block.note.flute</code>
| <code>block.note_block.flute</code>
|-
| <code>block.note.guitar</code>
| <code>block.note_block.guitar</code>
|-
| <code>block.note.harp</code>
| <code>block.note_block.harp</code>
|-
| <code>block.note.hat</code>
| <code>block.note_block.hat</code>
|-
| <code>block.note.pling</code>
| <code>block.note_block.pling</code>
|-
| <code>block.note.snare</code>
| <code>block.note_block.snare</code>
|-
| <code>block.note.xylophone</code>
| <code>block.note_block.xylophone</code>
|-
| <code>block.slime.break</code>
| <code>block.slime_block.break</code>
|-
| <code>block.slime.fall</code>
| <code>block.slime_block.fall</code>
|-
| <code>block.slime.hit</code>
| <code>block.slime_block.hit</code>
|-
| <code>block.slime.place</code>
| <code>block.slime_block.place</code>
|-
| <code>block.slime.step</code>
| <code>block.slime_block.step</code>
|-
| <code>block.stone_pressureplate.click_off</code>
| <code>block.stone_pressure_plate.click_off</code>
|-
| <code>block.stone_pressureplate.click_on</code>
| <code>block.stone_pressure_plate.click_on</code>
|-
| <code>block.waterlily.place</code>
| <code>block.lily_pad.place</code>
|-
| <code>block.wood_pressureplate.click_off</code>
| <code>block.wooden_pressure_plate.click_off</code>
|-
| <code>block.wood_button.click_on</code>
| <code>block.wooden_button.click_on</code>
|-
| <code>block.wood_button.click_off</code>
| <code>block.wooden_button.click_off</code>
|-
| <code>block.wood_pressureplate.click_on</code>
| <code>block.wooden_pressure_plate.click_on</code>
|-
| <code>entity.armorstand.break</code>
| <code>entity.armor_stand.break</code>
|-
| <code>entity.armorstand.fall</code>
| <code>entity.armor_stand.fall</code>
|-
| <code>entity.armorstand.hit</code>
| <code>entity.armor_stand.hit</code>
|-
| <code>entity.armorstand.place</code>
| <code>entity.armor_stand.place</code>
|-
| <code>entity.bobber.retrieve</code>
| <code>entity.fishing_bobber.retrieve</code>
|-
| <code>entity.bobber.splash</code>
| <code>entity.fishing_bobber.splash</code>
|-
| <code>entity.bobber.throw</code>
| <code>entity.fishing_bobber.throw</code>
|-
| <code>entity.enderdragon.ambient</code>
| <code>entity.ender_dragon.ambient</code>
|-
| <code>entity.enderdragon.death</code>
| <code>entity.ender_dragon.death</code>
|-
| <code>entity.enderdragon.flap</code>
| <code>entity.ender_dragon.flap</code>
|-
| <code>entity.enderdragon.growl</code>
| <code>entity.ender_dragon.growl</code>
|-
| <code>entity.enderdragon.hurt</code>
| <code>entity.ender_dragon.hurt</code>
|-
| <code>entity.enderdragon.shoot</code>
| <code>entity.ender_dragon.shoot</code>
|-
| <code>entity.enderdragon_fireball.explode</code>
| <code>entity.dragon_fireball.explode</code>
|-
| <code>entity.endereye.death</code>
| <code>entity.ender_eye.death</code>
|-
| <code>entity.endereye.launch</code>
| <code>entity.ender_eye.launch</code>
|-
| <code>entity.endermen.ambient</code>
| <code>entity.enderman.ambient</code>
|-
| <code>entity.endermen.death</code>
| <code>entity.enderman.death</code>
|-
| <code>entity.endermen.hurt</code>
| <code>entity.enderman.hurt</code>
|-
| <code>entity.endermen.scream</code>
| <code>entity.enderman.scream</code>
|-
| <code>entity.endermen.stare</code>
| <code>entity.enderman.stare</code>
|-
| <code>entity.endermen.teleport</code>
| <code>entity.enderman.teleport</code>
|-
| <code>entity.enderpearl.throw</code>
| <code>entity.ender_pearl.throw</code>
|-
| <code>entity.evocation_illager.ambient</code>
| <code>entity.evoker.ambient</code>
|-
| <code>entity.evocation_illager.cast_spell</code>
| <code>entity.evoker.cast_spell</code>
|-
| <code>entity.evocation_illager.death</code>
| <code>entity.evoker.death</code>
|-
| <code>entity.evocation_illager.hurt</code>
| <code>entity.evoker.hurt</code>
|-
| <code>entity.evocation_illager.prepare_attack</code>
| <code>entity.evoker.prepare_attack</code>
|-
| <code>entity.evocation_illager.prepare_summon</code>
| <code>entity.evoker.prepare_summon</code>
|-
| <code>entity.evocation_illager.prepare_wololo</code>
| <code>entity.evoker.prepare_wololo</code>
|-
| <code>entity.firework.blast</code>
| <code>entity.firework_rocket.blast</code>
|-
| <code>entity.firework.blast_far</code>
| <code>entity.firework_rocket.blast_far</code>
|-
| <code>entity.firework.large_blast</code>
| <code>entity.firework_rocket.large_blast</code>
|-
| <code>entity.firework.large_blast_far</code>
| <code>entity.firework_rocket.large_blast_far</code>
|-
| <code>entity.firework.launch</code>
| <code>entity.firework_rocket.launch</code>
|-
| <code>entity.firework.shoot</code>
| <code>entity.firework_rocket.shoot</code>
|-
| <code>entity.firework.twinkle</code>
| <code>entity.firework_rocket.twinkle</code>
|-
| <code>entity.firework.twinkle_far</code>
| <code>entity.firework_rocket.twinkle_far</code>
|-
| <code>entity.illusion_illager.ambient</code>
| <code>entity.illusioner.ambient</code>
|-
| <code>entity.illusion_illager.cast_spell</code>
| <code>entity.illusioner.cast_spell</code>
|-
| <code>entity.illusion_illager.death</code>
| <code>entity.illusioner.death</code>
|-
| <code>entity.illusion_illager.hurt</code>
| <code>entity.illusioner.hurt</code>
|-
| <code>entity.illusion_illager.mirror_move</code>
| <code>entity.illusioner.mirror_move</code>
|-
| <code>entity.illusion_illager.prepare_blindness</code>
| <code>entity.illusioner.prepare_blindness</code>
|-
| <code>entity.illusion_illager.prepare_mirror</code>
| <code>entity.illusioner.prepare_mirror</code>
|-
| <code>entity.irongolem.attack</code>
| <code>entity.iron_golem.attack</code>
|-
| <code>entity.irongolem.death</code>
| <code>entity.iron_golem.death</code>
|-
| <code>entity.irongolem.hurt</code>
| <code>entity.iron_golem.hurt</code>
|-
| <code>entity.irongolem.step</code>
| <code>entity.iron_golem.step</code>
|-
| <code>entity.itemframe.add_item</code>
| <code>entity.item_frame.add_item</code>
|-
| <code>entity.itemframe.break</code>
| <code>entity.item_frame.break</code>
|-
| <code>entity.itemframe.place</code>
| <code>entity.item_frame.place</code>
|-
| <code>entity.itemframe.remove_item</code>
| <code>entity.item_frame.remove_item</code>
|-
| <code>entity.itemframe.rotate_item</code>
| <code>entity.item_frame.rotate_item</code>
|-
| <code>entity.leashknot.break</code>
| <code>entity.leash_knot.break</code>
|-
| <code>entity.leashknot.place</code>
| <code>entity.leash_knot.place</code>
|-
| <code>entity.lightning.impact</code>
| <code>entity.lightning_bolt.impact</code>
|-
| <code>entity.lightning.thunder</code>
| <code>entity.lightning_bolt.thunder</code>
|-
| <code>entity.lingeringpotion.throw</code>
| <code>entity.lingering_potion.throw</code>
|-
| <code>entity.magmacube.death</code>
| <code>entity.magma_cube.death</code>
|-
| <code>entity.magmacube.hurt</code>
| <code>entity.magma_cube.hurt</code>
|-
| <code>entity.magmacube.jump</code>
| <code>entity.magma_cube.jump</code>
|-
| <code>entity.magmacube.squish</code>
| <code>entity.magma_cube.squish</code>
|-
| <code>entity.parrot.imitate.enderdragon</code>
| <code>entity.parrot.imitate.ender_dragon</code>
|-
| <code>entity.parrot.imitate.evocation_illager</code>
| <code>entity.parrot.imitate.evoker</code>
|-
| <code>entity.parrot.imitate.illusion_illager</code>
| <code>entity.parrot.imitate.illusioner</code>
|-
| <code>entity.parrot.imitate.magmacube</code>
| <code>entity.parrot.imitate.magma_cube</code>
|-
| <code>entity.parrot.imitate.vindication_illager</code>
| <code>entity.parrot.imitate.vindicator</code>
|-
| <code>entity.player.splash.highspeed</code>
| <code>entity.player.splash.high_speed</code>
|-
| <code>entity.polar_bear.baby_ambient</code>
| <code>entity.polar_bear.ambient_baby</code>
|-
| <code>entity.small_magmacube.death</code>
| <code>entity.magma_cube.death_small</code>
|-
| <code>entity.small_magmacube.hurt</code>
| <code>entity.magma_cube.hurt_small</code>
|-
| <code>entity.small_magmacube.squish</code>
| <code>entity.magma_cube.squish_small</code>
|-
| <code>entity.small_slime.death</code>
| <code>entity.slime.death_small</code>
|-
| <code>entity.small_slime.hurt</code>
| <code>entity.slime.hurt_small</code>
|-
| <code>entity.small_slime.jump</code>
| <code>entity.slime.jump_small</code>
|-
| <code>entity.small_slime.squish</code>
| <code>entity.slime.squish_small</code>
|-
| <code>entity.snowman.ambient</code>
| <code>entity.snow_golem.ambient</code>
|-
| <code>entity.snowman.death</code>
| <code>entity.snow_golem.death</code>
|-
| <code>entity.snowman.hurt</code>
| <code>entity.snow_golem.hurt</code>
|-
| <code>entity.snowman.shoot</code>
| <code>entity.snow_golem.shoot</code>
|-
| <code>entity.vindication_illager.ambient</code>
| <code>entity.vindicator.ambient</code>
|-
| <code>entity.vindication_illager.death</code>
| <code>entity.vindicator.death</code>
|-
| <code>entity.vindication_illager.hurt</code>
| <code>entity.vindicator.hurt</code>
|-
| <code>entity.zombie.attack_door_wood</code>
| <code>entity.zombie.attack_wooden_door</code>
|-
| <code>entity.zombie.break_door_wood</code>
| <code>entity.zombie.break_wooden_door</code>
|-
| <code>entity.zombie_pig.ambient</code>
| <code>entity.zombie_pigman.ambient</code>
|-
| <code>entity.zombie_pig.angry</code>
| <code>entity.zombie_pigman.angry</code>
|-
| <code>entity.zombie_pig.death</code>
| <code>entity.zombie_pigman.death</code>
|-
| <code>entity.zombie_pig.hurt</code>
| <code>entity.zombie_pigman.hurt</code>
|-
| <code>record.11</code>
| <code>music_disc.11</code>
|-
| <code>record.13</code>
| <code>music_disc.13</code>
|-
| <code>record.blocks</code>
| <code>music_disc.blocks</code>
|-
| <code>record.cat</code>
| <code>music_disc.cat</code>
|-
| <code>record.chirp</code>
| <code>music_disc.chirp</code>
|-
| <code>record.far</code>
| <code>music_disc.far</code>
|-
| <code>record.mall</code>
| <code>music_disc.mall</code>
|-
| <code>record.mellohi</code>
| <code>music_disc.mellohi</code>
|-
| <code>record.stal</code>
| <code>music_disc.stal</code>
|-
| <code>record.strad</code>
| <code>music_disc.strad</code>
|-
| <code>record.wait</code>
| <code>music_disc.wait</code>
|-
| <code>record.ward</code>
| <code>music_disc.ward</code>
|}
== Fixes ==
{{fixes|fixedin=1.13-pre5|prefix=Minecraft
|;old
|52166|Lowering height by one block causes fall damage even with water brake.
|103516|Spider and chicken jockeys only spawn the additional mob.
|118372|Faulty netty-4.1.9.Final release causes players to be kicked from the server.
|119901|Slow scrolling in the controls menu.
|127334|Superflat biome id still uses numeral id, rather than named id.
|;dev
|122311|Game crashes after "Backup and Load".
|122473|Game crashes when resource pack selected (path of location: minecraft:blocks/stone frame).
|124027|Default singleplayer player data is not written or read to level.dat anymore.
|124167|Disabled data packs still override vanilla structures (e.g. igloo).
|124545|Malformed JSON as 'name' value for 'show_entity' hoverEvent causes crash.
|124546|{{cmd|datapack disable <pack>}} only works in the overworld.
|124970|Selector argument values beginning with "!" show an error despite them being a valid prefix.
|124990|Inverted tab-suggestions for argument values in entity selectors do not display gray text in chat input line.
|125038|New world generation doesn't populate edges of old world.
|125729|Moving frosted ice preempts melting even under correct conditions.
|125807|Block ids are inserted wrongly into chunk section block palettes.
|125900|Sky light levels underground too high (since 18w05a).
|126081|Mousepointer is not captured.
|126136|Inverted tab-suggestions for argument values in entity selectors are suggested even if the typed prefix doesn't include an exclamation mark.
|126144|Cods suffocate when touching a solid block from below.
|126373|Density of nether and overworld ore blobs significantly lower in 18w versions.
|126508|Crash: {{code|Exception in thread "main" java.lang.UnsatisfiedLinkError: Failed to dynamically load library}}.
|126569|Underwater Ruins Floating in the water.
|126599|{{code|Failed to save chunk java.lang.NullPointerException: null}}.
|126723|Some mobs presenting a swimming state in the wrong place.
|126906|Buckets cannot be emptied against blocks with the state waterlogged.
|126915|Dispenser with empty bucket removes waterlogged blocks instead of drying them out.
|126964|Fish mobs, guardians and dolphins cannot properly swim in the waterlogged blocks.
|127017|Coral Plants don't break if the block underneath them is removed.
|127803|Falling down with elytra active and looking upwards the player falls through the world.
|129527|Drowned overlay turns dark blue when wearing enchanted armor.
|130182|Can't open world from 1.12.
|130270|Iron golem spawning inside blocks.
|130480|Input range entry and limits are reversed in error messages.
|130547|Objective {{code|minecraft.used}} only ticks up when placing a block from a stack of 2 or more items.
|130887|Crash with cartographers: Loading entity NBT.
|131088|Corrupted chunk in the middle of an already generated ocean monument after updating from 18w16a to 1.13-pre1.
|131094|Projectiles ignore collisions for ~1 block after spawned.
|131239|Stained glass, iron bars, and brewing stands show up on maps even when there is no block beneath it.
|131409|Reins appear while riding non-saddled horses.
|131599|Opening player inventory with visible recipe book after using beacon causes crash.
|131739|Data generators sometimes hang forever (and always wait to exit after finishing) due to data fixers.
|131857|Dragon death effects keep going.
|132002|Ender dragon respawns when upgrading from 1.12 to 1.13-pre3.
|;prev
|132064|Swimming state does not end when teleporting / jumping out of water.
|132073|Creating a new world fails "{{code|Writing into PalettedContainer from multiple threads}}" - Bug in JRE 1.8.0_25.
|132139|1.13-pre4 crash: {{code|Failed to locate library: lwjgl_opengl32.dll}}.
|132144|Using bone meal on bottom log of tree grown from sapling consumes bone meal.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|iBXVAxTZlbI}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13-pre5]]
[[es:Java Edition 1.13-pre5]]
[[fr:Édition Java 1.13-pre5]]
[[ja:Java Edition 1.13-pre5]]
[[nl:1.13-pre5]]
[[pt:Edição Java 1.13-pre5]]
[[ru:1.13-pre5 (Java Edition)]]
[[zh:Java版1.13-pre5]]

732
wiki_backup/1.13-pre5.txt Normal file
View file

@ -0,0 +1,732 @@
{{Infobox version
|title=Minecraft 1.13-pre5
|image=1.13-pre1.jpg
|image2=Java Edition 1.13-pre5.png
|edition=Java
|type=Pre-release
|date=June 28, 2018
|parent=1.13
|clienthash=f3262055c586a075fc84f9d4bc76b3cf1a72d69c
|jsonhash=b5f4b7d67e57a2784204af0c744e6bfb02a5f04f
|serverhash=6d9ede222df5726059aba1b01f99c328bc16f1a5
|prevparent=1.12.2
|prev=1.13-pre4
|next=1.13-pre6
|nextparent=1.13.1
}}<onlyinclude>
'''1.13-pre5'''<ref>{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 5|June 4, 2018}}</ref> is the fifth pre-release for [[Java Edition 1.13]].
== Changes ==
=== General ===
* Upgrade path optics code is now in a separate library, datafixerupper.<ref>https://libraries.minecraft.net/com/mojang/datafixerupper/1.0.3/datafixerupper-1.0.3.pom; https://arxiv.org/ftp/arxiv/papers/1703/1703.10857.pdf for info on optics</ref>
;[[1.13/Flattening|The "Flattening"]]
* Changed some of the names of entities:
{| class="wikitable"
|-
! Previous entity name !! New entity name
|-
| Eye of Ender Signal || {{EntityLink|Eye of Ender}}
|-
| Evocation Fangs || {{EntityLink|Evoker Fangs}}
|}
* Changed some of the names of blocks:
{| class="wikitable"
|-
! Previous block name !! New block name
|-
| Bark || {{BlockLink|Wood}}
|-
| Stripped Bark || {{BlockLink|Stripped Wood}}
|-
| Portal || {{BlockLink|Nether Portal}}
|}
* Changed some of the names of items:
{| class="wikitable"
|-
! Previous item name !! New item name
|-
| Pufferfish Bucket || {{ItemLink|Bucket of Pufferfish}}
|-
| Salmon Bucket || {{ItemLink|Bucket of Salmon}}
|-
| Cod Bucket || {{ItemLink|Bucket of Cod}}
|-
| Tropical Fish Bucket || {{ItemLink|Bucket of Tropical Fish}}
|}
* Renamed a lot of IDs to be more consistent with the game:
{| class="wikitable" style="overflow: scroll;"
|-
! Entity !! Previous ID !! New ID
|-
| {{EntityLink|Experience orb}} || <code>xp_orb</code> || <code>experience_orb</code>
|-
| {{EntityLink|Bottle o' Enchanting}} || <code>xp_bottle</code> || <code>experience_bottle</code>
|-
| {{EntityLink|Eye of Ender}} || <code>eye_of_ender_signal</code> || <code>eye_of_ender</code>
|-
| {{EntityLink|End Crystal}} || <code>ender_crystal</code> || <code>end_crystal</code>.
|-
| {{EntityLink|Firework Rocket}} || <code>fireworks_rocket</code> || <code>firework_rocket</code>
|-
| {{EntityLink|Minecart with Command Block|Command Block Minecart}} || <code>commandblock_minecart</code> || <code>command_block_minecart</code>
|-
| {{EntityLink|Snow Golem}} || <code>snowman</code> || <code>snow_golem</code>
|-
| {{EntityLink|Iron Golem}} || <code>villager_golem</code> || <code>iron_golem</code>
|-
| {{EntityLink|Evoker Fangs}} || <code>evocation_fangs</code> || <code>evoker_fangs</code>
|-
| {{EntityLink|Evoker}} || <code>evocation_illager</code> || <code>evoker</code>
|-
| {{EntityLink|Vindicator}} || <code>vindication_illager</code> || <code>vindicator</code>
|-
| {{EntityLink|Illusioner}} || <code>illusion_illager</code> || <code>illusioner</code>
|-
! Block / Item !! Previous ID !! New ID
|-
| {{ItemLink|Evoker Spawn Egg}} || <code>evocation_illager_spawn_egg</code> || <code>evoker_spawn_egg</code>
|-
| {{ItemLink|Vindicator Spawn Egg}} || <code>vindication_illager_spawn_egg</code> || <code>vindicator_spawn_egg</code>
|-
| {{BlockLink|id=monster spawner|link=Monster Spawner|Spawner}} || <code>mob_spawner</code> || <code>spawner</code>
|-
| {{BlockLink|Nether Portal}} || <code>portal</code> || <code>nether_portal</code>
|-
| {{ItemLink|Tropical Fish}} || <code>clownfish</code> || <code>tropical_fish</code>
|-
| {{ItemLink|Tropical Fish Bucket}} || <code>clownfish_bucket</code> || <code>tropical_fish_bucket</code>
|-
| {{ItemLink|Popped Chorus Fruit}} || <code>chorus_fruit_popped</code> || <code>popped_chorus_fruit</code>
|-
| {{BlockLink|Logs|Wood}} || <code><type>_bark</code> || <code><type>_wood</code>
|-
| {{BlockLink|id=Stripped Logs|Stripped Wood}} || <code>stripped_<type>_bark</code> || <code>stripped_<type>_wood</code>
|-
! Biome !! Previous ID !! New ID
|-
| {{BiomeLink|id=windswept hills|Mountains}} || <code>extreme_hills</code> || <code>mountains</code>
|-
| {{BiomeLink|Swamp}} || <code>swampland</code> || <code>swamp</code>
|-
| {{BiomeLink|id=nether-wastes|Nether}} || <code>hell</code> || <code>nether</code>
|-
| {{BiomeLink|The End}} || <code>sky</code> || <code>the_end</code>
|-
| {{BiomeLink|id=snowy plains|Snowy Tundra}} || <code>ice_flats</code> || <code>snowy_tundra</code>
|-
| {{BiomeLink|Snowy Mountains}} || <code>ice_mountains</code> || <code>snowy_mountains</code>
|-
| {{BiomeLink|Mushroom Fields}} || <code>mushroom_island</code> || <code>mushroom_fields</code>
|-
| {{BiomeLink|Mushroom Field Shore}} || <code>mushroom_island_shore</code> || <code>mushroom_field_shore</code>
|-
| {{BiomeLink|Beach}} || <code>beaches</code> || <code>beach</code>
|-
| {{BiomeLink|Wooded Hills}} || <code>forest_hills</code> || <code>wooded_hills</code>
|-
| {{BiomeLink|Mountain Edge}} || <code>smaller_extreme_hills</code> || <code>mountain_edge</code>
|-
| {{BiomeLink|id=stony shore|Stone Shore}} || <code>stone_beach</code> || <code>stone_shore</code>
|-
| {{BiomeLink|Snowy Beach}} || <code>cold_beach</code> || <code>snowy_beach</code>
|-
| {{BiomeLink|Dark Forest}} || <code>roofed_forest</code> || <code>dark_forest</code>
|-
| {{BiomeLink|Snowy Taiga}} || <code>taiga_cold</code> || <code>snowy_taiga</code>
|-
| {{BiomeLink|Snowy Taiga Hills}} || <code>taiga_cold_hills</code> || <code>snowy_taiga_hills</code>
|-
| {{BiomeLink|id=old growth pine taiga|Giant Tree Taiga}} || <code>redwood_taiga</code> || <code>giant_tree_taiga</code>
|-
| {{BiomeLink|Giant Tree Taiga Hills}} || <code>redwood_taiga_hills</code> || <code>giant_tree_taiga_hills</code>
|-
| {{BiomeLink|id=windswept forest|Wooded Mountains}} || <code>extreme_hills_with_trees</code> || <code>wooded_mountains</code>
|-
| {{BiomeLink|Savanna Plateau}} || <code>savanna_rock</code> || <code>savanna_plateau</code>
|-
| {{BiomeLink|Badlands}} || <code>mesa</code> || <code>badlands</code>
|-
| {{BiomeLink|id=wooded badlands|Wooded Badlands Plateau}} || <code>mesa_rock</code> || <code>wooded_badlands_plateau</code>
|-
| {{BiomeLink|Badlands Plateau}} || <code>mesa_clear_rock</code> || <code>badlands_plateau</code>
|-
| {{BiomeLink|Small End Islands}} || <code>sky_island_low</code> || <code>small_end_islands</code>
|-
| {{BiomeLink|End Midlands}} || <code>sky_island_medium</code> || <code>end_midlands</code>
|-
| {{BiomeLink|End Highlands}} || <code>sky_island_high</code> || <code>end_highlands</code>
|-
| {{BiomeLink|End Barrens}} || <code>sky_island_barren</code> || <code>end_barrens</code>
|-
| {{BiomeLink|The Void}} || <code>void</code> || <code>the_void</code>
|-
| {{BiomeLink|Sunflower Plains}} || <code>mutated_plains</code> || <code>sunflower_plains</code>
|-
| {{BiomeLink|Desert Lakes}} || <code>mutated_desert</code> || <code>desert_lakes</code>
|-
| {{BiomeLink|id=windswept gravelly hills|Gravelly Mountains}} || <code>mutated_extreme_hills</code> || <code>gravelly_mountains</code>
|-
| {{BiomeLink|Flower Forest}} || <code>mutated_forest</code> || <code>flower_forest</code>
|-
| {{BiomeLink|Taiga Mountains}} || <code>mutated_taiga</code> || <code>taiga_mountains</code>
|-
| {{BiomeLink|Swamp Hills}} || <code>mutated_swampland</code> || <code>swamp_hills</code>
|-
| {{BiomeLink|Ice Spikes}} || <code>mutated_ice_flats</code> || <code>ice_spikes</code>
|-
| {{BiomeLink|Modified Jungle}} || <code>mutated_jungle</code> || <code>modified_jungle</code>
|-
| {{BiomeLink|Modified Jungle Edge}} || <code>mutated_jungle_edge</code> || <code>modified_jungle_edge</code>
|-
| {{BiomeLink|id=old growth birch forest|Tall Birch Forest}} || <code>mutated_birch_forest</code> || <code>tall_birch_forest</code>
|-
| {{BiomeLink|Tall Birch Hills}} || <code>mutated_birch_forest_hills</code> || <code>tall_birch_hills</code>
|-
| {{BiomeLink|Dark Forest Hills}} || <code>mutated_roofed_forest</code> || <code>dark_forest_hills</code>
|-
| {{BiomeLink|Snowy Taiga Mountains}} || <code>mutated_taiga_cold</code> || <code>snowy_taiga_mountains</code>
|-
| {{BiomeLink|id=old growth spruce taiga|Giant Spruce Taiga}} || <code>mutated_redwood_taiga</code> || <code>giant_spruce_taiga</code>
|-
| {{BiomeLink|Giant Spruce Taiga Hills}} || <code>mutated_redwood_taiga_hills</code> || <code>giant_spruce_taiga_hills</code>
|-
| {{BiomeLink|id=Modified Gravelly Mountains|Gravelly Mountains+}} || <code>mutated_extreme_hills_with_trees</code> || <code>modified_gravelly_mountains</code>
|-
| {{BiomeLink|id=windswept savanna|Shattered Savanna}} || <code>mutated_savanna</code> || <code>shattered_savanna</code>
|-
| {{BiomeLink|Shattered Savanna Plateau}} || <code>mutated_savanna_rock</code> || <code>shattered_savanna_plateau</code>
|-
| {{BiomeLink|Eroded Badlands}} || <code>mutated_mesa</code> || <code>eroded_badlands</code>
|-
| {{BiomeLink|Modified Wooded Badlands Plateau}} || <code>mutated_mesa_rock</code> || <code>modified_wooded_badlands_plateau</code>
|-
| {{BiomeLink|Modified Badlands Plateau}} || <code>mutated_mesa_clear_rock</code> || <code>modified_badlands_plateau</code>
|-
| {{BiomeLink|Deep Warm Ocean}} || <code>warm_deep_ocean</code> || <code>deep_warm_ocean</code>
|-
| {{BiomeLink|Deep Lukewarm Ocean}} || <code>lukewarm_deep_ocean</code> || <code>deep_lukewarm_ocean</code>
|-
| {{BiomeLink|Deep Cold Ocean}} || <code>cold_deep_ocean</code> || <code>deep_cold_ocean</code>
|-
| {{BiomeLink|Deep Frozen Ocean}} || <code>frozen_deep_ocean</code> || <code>deep_frozen_ocean</code>
|}
* Changed the file paths for some textures:
{| class="wikitable"
|-
! Previous path !! New path
|-
| <code>entity/boat/boat_<type></code> || <code>entity/boat/<type></code>
|-
| <code>entity/endercrystal/endercrystal</code> || <code>entity/end_crystal/end_crystal</code>
|-
| <code>entity/endercrystal/endercrystal_beam</code> || <code>entity/end_crystal/end_crystal_beam</code>
|-
| <code>entity/illager/fangs</code> || <code>entity/illager/evoker_fangs</code>
|-
| <code>entity/llama/llama</code> || removed
|-
| <code>entity/llama/llama_<variant></code> || <code>entity/llama/<variant></code>
|-
| <code>entity/llama/decor/decor_<color></code> || <code>entity/llama/decor/<color></code>
|-
| <code>entity/wither/wither_invul</code> || <code>entity/wither/wither_invulnerable</code>
|}
* Changed the names of some sound events:
{|class="wikitable"
! Old !! New
|-
| <code>ambient.underwater.loop.additions.ultrarare</code>
| <code>ambient.underwater.loop.additions.ultra_rare</code>
|-
| <code>block.bubble_column.bubble_column_upwards_ambient</code>
| <code>block.bubble_column.upwards_ambient</code>
|-
| <code>block.cloth.break</code>
| <code>block.wool.break</code>
|-
| <code>block.cloth.fall</code>
| <code>block.wool.fall</code>
|-
| <code>block.cloth.hit</code>
| <code>block.wool.hit</code>
|-
| <code>block.cloth.place</code>
| <code>block.wool.place</code>
|-
| <code>block.cloth.step</code>
| <code>block.wool.step</code>
|-
| <code>block.enderchest.close</code>
| <code>block.ender_chest.close</code>
|-
| <code>block.enderchest.open</code>
| <code>block.ender_chest.open</code>
|-
| <code>block.metal_pressureplate.click_off</code>
| <code>block.metal_pressure_plate.click_off</code>
|-
| <code>block.metal_pressureplate.click_on</code>
| <code>block.metal_pressure_plate.click_on</code>
|-
| <code>block.note.basedrum</code>
| <code>block.note_block.basedrum</code>
|-
| <code>block.note.bass</code>
| <code>block.note_block.bass</code>
|-
| <code>block.note.bell</code>
| <code>block.note_block.bell</code>
|-
| <code>block.note.chime</code>
| <code>block.note_block.chime</code>
|-
| <code>block.note.flute</code>
| <code>block.note_block.flute</code>
|-
| <code>block.note.guitar</code>
| <code>block.note_block.guitar</code>
|-
| <code>block.note.harp</code>
| <code>block.note_block.harp</code>
|-
| <code>block.note.hat</code>
| <code>block.note_block.hat</code>
|-
| <code>block.note.pling</code>
| <code>block.note_block.pling</code>
|-
| <code>block.note.snare</code>
| <code>block.note_block.snare</code>
|-
| <code>block.note.xylophone</code>
| <code>block.note_block.xylophone</code>
|-
| <code>block.slime.break</code>
| <code>block.slime_block.break</code>
|-
| <code>block.slime.fall</code>
| <code>block.slime_block.fall</code>
|-
| <code>block.slime.hit</code>
| <code>block.slime_block.hit</code>
|-
| <code>block.slime.place</code>
| <code>block.slime_block.place</code>
|-
| <code>block.slime.step</code>
| <code>block.slime_block.step</code>
|-
| <code>block.stone_pressureplate.click_off</code>
| <code>block.stone_pressure_plate.click_off</code>
|-
| <code>block.stone_pressureplate.click_on</code>
| <code>block.stone_pressure_plate.click_on</code>
|-
| <code>block.waterlily.place</code>
| <code>block.lily_pad.place</code>
|-
| <code>block.wood_pressureplate.click_off</code>
| <code>block.wooden_pressure_plate.click_off</code>
|-
| <code>block.wood_button.click_on</code>
| <code>block.wooden_button.click_on</code>
|-
| <code>block.wood_button.click_off</code>
| <code>block.wooden_button.click_off</code>
|-
| <code>block.wood_pressureplate.click_on</code>
| <code>block.wooden_pressure_plate.click_on</code>
|-
| <code>entity.armorstand.break</code>
| <code>entity.armor_stand.break</code>
|-
| <code>entity.armorstand.fall</code>
| <code>entity.armor_stand.fall</code>
|-
| <code>entity.armorstand.hit</code>
| <code>entity.armor_stand.hit</code>
|-
| <code>entity.armorstand.place</code>
| <code>entity.armor_stand.place</code>
|-
| <code>entity.bobber.retrieve</code>
| <code>entity.fishing_bobber.retrieve</code>
|-
| <code>entity.bobber.splash</code>
| <code>entity.fishing_bobber.splash</code>
|-
| <code>entity.bobber.throw</code>
| <code>entity.fishing_bobber.throw</code>
|-
| <code>entity.enderdragon.ambient</code>
| <code>entity.ender_dragon.ambient</code>
|-
| <code>entity.enderdragon.death</code>
| <code>entity.ender_dragon.death</code>
|-
| <code>entity.enderdragon.flap</code>
| <code>entity.ender_dragon.flap</code>
|-
| <code>entity.enderdragon.growl</code>
| <code>entity.ender_dragon.growl</code>
|-
| <code>entity.enderdragon.hurt</code>
| <code>entity.ender_dragon.hurt</code>
|-
| <code>entity.enderdragon.shoot</code>
| <code>entity.ender_dragon.shoot</code>
|-
| <code>entity.enderdragon_fireball.explode</code>
| <code>entity.dragon_fireball.explode</code>
|-
| <code>entity.endereye.death</code>
| <code>entity.ender_eye.death</code>
|-
| <code>entity.endereye.launch</code>
| <code>entity.ender_eye.launch</code>
|-
| <code>entity.endermen.ambient</code>
| <code>entity.enderman.ambient</code>
|-
| <code>entity.endermen.death</code>
| <code>entity.enderman.death</code>
|-
| <code>entity.endermen.hurt</code>
| <code>entity.enderman.hurt</code>
|-
| <code>entity.endermen.scream</code>
| <code>entity.enderman.scream</code>
|-
| <code>entity.endermen.stare</code>
| <code>entity.enderman.stare</code>
|-
| <code>entity.endermen.teleport</code>
| <code>entity.enderman.teleport</code>
|-
| <code>entity.enderpearl.throw</code>
| <code>entity.ender_pearl.throw</code>
|-
| <code>entity.evocation_illager.ambient</code>
| <code>entity.evoker.ambient</code>
|-
| <code>entity.evocation_illager.cast_spell</code>
| <code>entity.evoker.cast_spell</code>
|-
| <code>entity.evocation_illager.death</code>
| <code>entity.evoker.death</code>
|-
| <code>entity.evocation_illager.hurt</code>
| <code>entity.evoker.hurt</code>
|-
| <code>entity.evocation_illager.prepare_attack</code>
| <code>entity.evoker.prepare_attack</code>
|-
| <code>entity.evocation_illager.prepare_summon</code>
| <code>entity.evoker.prepare_summon</code>
|-
| <code>entity.evocation_illager.prepare_wololo</code>
| <code>entity.evoker.prepare_wololo</code>
|-
| <code>entity.firework.blast</code>
| <code>entity.firework_rocket.blast</code>
|-
| <code>entity.firework.blast_far</code>
| <code>entity.firework_rocket.blast_far</code>
|-
| <code>entity.firework.large_blast</code>
| <code>entity.firework_rocket.large_blast</code>
|-
| <code>entity.firework.large_blast_far</code>
| <code>entity.firework_rocket.large_blast_far</code>
|-
| <code>entity.firework.launch</code>
| <code>entity.firework_rocket.launch</code>
|-
| <code>entity.firework.shoot</code>
| <code>entity.firework_rocket.shoot</code>
|-
| <code>entity.firework.twinkle</code>
| <code>entity.firework_rocket.twinkle</code>
|-
| <code>entity.firework.twinkle_far</code>
| <code>entity.firework_rocket.twinkle_far</code>
|-
| <code>entity.illusion_illager.ambient</code>
| <code>entity.illusioner.ambient</code>
|-
| <code>entity.illusion_illager.cast_spell</code>
| <code>entity.illusioner.cast_spell</code>
|-
| <code>entity.illusion_illager.death</code>
| <code>entity.illusioner.death</code>
|-
| <code>entity.illusion_illager.hurt</code>
| <code>entity.illusioner.hurt</code>
|-
| <code>entity.illusion_illager.mirror_move</code>
| <code>entity.illusioner.mirror_move</code>
|-
| <code>entity.illusion_illager.prepare_blindness</code>
| <code>entity.illusioner.prepare_blindness</code>
|-
| <code>entity.illusion_illager.prepare_mirror</code>
| <code>entity.illusioner.prepare_mirror</code>
|-
| <code>entity.irongolem.attack</code>
| <code>entity.iron_golem.attack</code>
|-
| <code>entity.irongolem.death</code>
| <code>entity.iron_golem.death</code>
|-
| <code>entity.irongolem.hurt</code>
| <code>entity.iron_golem.hurt</code>
|-
| <code>entity.irongolem.step</code>
| <code>entity.iron_golem.step</code>
|-
| <code>entity.itemframe.add_item</code>
| <code>entity.item_frame.add_item</code>
|-
| <code>entity.itemframe.break</code>
| <code>entity.item_frame.break</code>
|-
| <code>entity.itemframe.place</code>
| <code>entity.item_frame.place</code>
|-
| <code>entity.itemframe.remove_item</code>
| <code>entity.item_frame.remove_item</code>
|-
| <code>entity.itemframe.rotate_item</code>
| <code>entity.item_frame.rotate_item</code>
|-
| <code>entity.leashknot.break</code>
| <code>entity.leash_knot.break</code>
|-
| <code>entity.leashknot.place</code>
| <code>entity.leash_knot.place</code>
|-
| <code>entity.lightning.impact</code>
| <code>entity.lightning_bolt.impact</code>
|-
| <code>entity.lightning.thunder</code>
| <code>entity.lightning_bolt.thunder</code>
|-
| <code>entity.lingeringpotion.throw</code>
| <code>entity.lingering_potion.throw</code>
|-
| <code>entity.magmacube.death</code>
| <code>entity.magma_cube.death</code>
|-
| <code>entity.magmacube.hurt</code>
| <code>entity.magma_cube.hurt</code>
|-
| <code>entity.magmacube.jump</code>
| <code>entity.magma_cube.jump</code>
|-
| <code>entity.magmacube.squish</code>
| <code>entity.magma_cube.squish</code>
|-
| <code>entity.parrot.imitate.enderdragon</code>
| <code>entity.parrot.imitate.ender_dragon</code>
|-
| <code>entity.parrot.imitate.evocation_illager</code>
| <code>entity.parrot.imitate.evoker</code>
|-
| <code>entity.parrot.imitate.illusion_illager</code>
| <code>entity.parrot.imitate.illusioner</code>
|-
| <code>entity.parrot.imitate.magmacube</code>
| <code>entity.parrot.imitate.magma_cube</code>
|-
| <code>entity.parrot.imitate.vindication_illager</code>
| <code>entity.parrot.imitate.vindicator</code>
|-
| <code>entity.player.splash.highspeed</code>
| <code>entity.player.splash.high_speed</code>
|-
| <code>entity.polar_bear.baby_ambient</code>
| <code>entity.polar_bear.ambient_baby</code>
|-
| <code>entity.small_magmacube.death</code>
| <code>entity.magma_cube.death_small</code>
|-
| <code>entity.small_magmacube.hurt</code>
| <code>entity.magma_cube.hurt_small</code>
|-
| <code>entity.small_magmacube.squish</code>
| <code>entity.magma_cube.squish_small</code>
|-
| <code>entity.small_slime.death</code>
| <code>entity.slime.death_small</code>
|-
| <code>entity.small_slime.hurt</code>
| <code>entity.slime.hurt_small</code>
|-
| <code>entity.small_slime.jump</code>
| <code>entity.slime.jump_small</code>
|-
| <code>entity.small_slime.squish</code>
| <code>entity.slime.squish_small</code>
|-
| <code>entity.snowman.ambient</code>
| <code>entity.snow_golem.ambient</code>
|-
| <code>entity.snowman.death</code>
| <code>entity.snow_golem.death</code>
|-
| <code>entity.snowman.hurt</code>
| <code>entity.snow_golem.hurt</code>
|-
| <code>entity.snowman.shoot</code>
| <code>entity.snow_golem.shoot</code>
|-
| <code>entity.vindication_illager.ambient</code>
| <code>entity.vindicator.ambient</code>
|-
| <code>entity.vindication_illager.death</code>
| <code>entity.vindicator.death</code>
|-
| <code>entity.vindication_illager.hurt</code>
| <code>entity.vindicator.hurt</code>
|-
| <code>entity.zombie.attack_door_wood</code>
| <code>entity.zombie.attack_wooden_door</code>
|-
| <code>entity.zombie.break_door_wood</code>
| <code>entity.zombie.break_wooden_door</code>
|-
| <code>entity.zombie_pig.ambient</code>
| <code>entity.zombie_pigman.ambient</code>
|-
| <code>entity.zombie_pig.angry</code>
| <code>entity.zombie_pigman.angry</code>
|-
| <code>entity.zombie_pig.death</code>
| <code>entity.zombie_pigman.death</code>
|-
| <code>entity.zombie_pig.hurt</code>
| <code>entity.zombie_pigman.hurt</code>
|-
| <code>record.11</code>
| <code>music_disc.11</code>
|-
| <code>record.13</code>
| <code>music_disc.13</code>
|-
| <code>record.blocks</code>
| <code>music_disc.blocks</code>
|-
| <code>record.cat</code>
| <code>music_disc.cat</code>
|-
| <code>record.chirp</code>
| <code>music_disc.chirp</code>
|-
| <code>record.far</code>
| <code>music_disc.far</code>
|-
| <code>record.mall</code>
| <code>music_disc.mall</code>
|-
| <code>record.mellohi</code>
| <code>music_disc.mellohi</code>
|-
| <code>record.stal</code>
| <code>music_disc.stal</code>
|-
| <code>record.strad</code>
| <code>music_disc.strad</code>
|-
| <code>record.wait</code>
| <code>music_disc.wait</code>
|-
| <code>record.ward</code>
| <code>music_disc.ward</code>
|}
== Fixes ==
{{fixes|fixedin=1.13-pre5|prefix=Minecraft
|;old
|52166|Lowering height by one block causes fall damage even with water brake.
|103516|Spider and chicken jockeys only spawn the additional mob.
|118372|Faulty netty-4.1.9.Final release causes players to be kicked from the server.
|119901|Slow scrolling in the controls menu.
|127334|Superflat biome id still uses numeral id, rather than named id.
|;dev
|122311|Game crashes after "Backup and Load".
|122473|Game crashes when resource pack selected (path of location: minecraft:blocks/stone frame).
|124027|Default singleplayer player data is not written or read to level.dat anymore.
|124167|Disabled data packs still override vanilla structures (e.g. igloo).
|124545|Malformed JSON as 'name' value for 'show_entity' hoverEvent causes crash.
|124546|{{cmd|datapack disable <pack>}} only works in the overworld.
|124970|Selector argument values beginning with "!" show an error despite them being a valid prefix.
|124990|Inverted tab-suggestions for argument values in entity selectors do not display gray text in chat input line.
|125038|New world generation doesn't populate edges of old world.
|125729|Moving frosted ice preempts melting even under correct conditions.
|125807|Block ids are inserted wrongly into chunk section block palettes.
|125900|Sky light levels underground too high (since 18w05a).
|126081|Mousepointer is not captured.
|126136|Inverted tab-suggestions for argument values in entity selectors are suggested even if the typed prefix doesn't include an exclamation mark.
|126144|Cods suffocate when touching a solid block from below.
|126373|Density of nether and overworld ore blobs significantly lower in 18w versions.
|126508|Crash: {{code|Exception in thread "main" java.lang.UnsatisfiedLinkError: Failed to dynamically load library}}.
|126569|Underwater Ruins Floating in the water.
|126599|{{code|Failed to save chunk java.lang.NullPointerException: null}}.
|126723|Some mobs presenting a swimming state in the wrong place.
|126906|Buckets cannot be emptied against blocks with the state waterlogged.
|126915|Dispenser with empty bucket removes waterlogged blocks instead of drying them out.
|126964|Fish mobs, guardians and dolphins cannot properly swim in the waterlogged blocks.
|127017|Coral Plants don't break if the block underneath them is removed.
|127803|Falling down with elytra active and looking upwards the player falls through the world.
|129527|Drowned overlay turns dark blue when wearing enchanted armor.
|130182|Can't open world from 1.12.
|130270|Iron golem spawning inside blocks.
|130480|Input range entry and limits are reversed in error messages.
|130547|Objective {{code|minecraft.used}} only ticks up when placing a block from a stack of 2 or more items.
|130887|Crash with cartographers: Loading entity NBT.
|131088|Corrupted chunk in the middle of an already generated ocean monument after updating from 18w16a to 1.13-pre1.
|131094|Projectiles ignore collisions for ~1 block after spawned.
|131239|Stained glass, iron bars, and brewing stands show up on maps even when there is no block beneath it.
|131409|Reins appear while riding non-saddled horses.
|131599|Opening player inventory with visible recipe book after using beacon causes crash.
|131739|Data generators sometimes hang forever (and always wait to exit after finishing) due to data fixers.
|131857|Dragon death effects keep going.
|132002|Ender dragon respawns when upgrading from 1.12 to 1.13-pre3.
|;prev
|132064|Swimming state does not end when teleporting / jumping out of water.
|132073|Creating a new world fails "{{code|Writing into PalettedContainer from multiple threads}}" - Bug in JRE 1.8.0_25.
|132139|1.13-pre4 crash: {{code|Failed to locate library: lwjgl_opengl32.dll}}.
|132144|Using bone meal on bottom log of tree grown from sapling consumes bone meal.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|iBXVAxTZlbI}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13-pre5]]
[[es:Java Edition 1.13-pre5]]
[[fr:Édition Java 1.13-pre5]]
[[ja:Java Edition 1.13-pre5]]
[[nl:1.13-pre5]]
[[pt:Edição Java 1.13-pre5]]
[[ru:1.13-pre5 (Java Edition)]]
[[zh:Java版1.13-pre5]]

149
wiki_backup/1.13-pre7.txt Normal file
View file

@ -0,0 +1,149 @@
{{Infobox version
|title=Minecraft 1.13-pre7
|image=1.13-pre1.jpg
|image2=Java Edition 1.13-pre7.png
|edition=Java
|type=Pre-release
|date=July 10, 2018
|parent=1.13
|clienthash=0b5d9df7bc2d0e4fd00d0bf7cf4409b999567497
|jsonhash=dec652f76a03e192b7b8de0e093869ca803eb4c8
|serverhash=6cd8348fadedaa1de5851f449b995c835bb569eb
|prevparent=1.12.2
|nextparent=1.13.1
|prev=1.13-pre6
|next=1.13-pre8
}}<onlyinclude>
'''1.13-pre7'''<ref name=article>{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 7|July 10, 2018}}</ref> is the seventh pre-release for [[Java Edition 1.13]].
== Additions ==
=== Command format ===
* Added {{cmd|scoreboard objectives modify ''<objective>'' displayname ''<displayname>''}}
== Changes ==
=== Fluids ===
; [[Water]]
* Pressing the {{control|jump}} button in flowing water at <code>level=1</code>, <code>level=2</code> and <code>level=3</code> will now do normal jumps instead of {{control|swimming}} up.
=== Items ===
; [[Map]]s
* Maps changed slightly in regards to which [[block]]s are shown and which blocks are not.<ref>https://www.reddit.com/r/Minecraft/comments/8xo1ex/minecraft_113_map_rendering_changes/</ref>
=== General ===
; [[Advancement]]s
* Advancement descriptions now have colors:
** Normal and goal advancements have green descriptions.
** Challenge advancements have purple descriptions.
; [[Debug screen]]
* '''Left side:'''
** Added "Looking at liquid" row. Displays the targeted fluid's coordinates.
** "Looking at" row has been renamed "Looking at block" and now targets through liquids.
* '''Right side:'''
** "Targeted Block" information now targets through fluids.
** "Targeted Block" now displays information for blocks up to 16 blocks away.
** Added "Targeted Entity". Displays information for entities up to 4 blocks away (counting from the entity's hitbox).
* Changed {{key|F3+I}}<ref>F3+I was used to copy targeted block or entity data to clipboard.</ref> to now be {{key|Shift+F3+I}}. It is now clarified that it copies the client-side data of targeted block or entity. It still can be used by anyone.
* Added {{key|F3+I}} to copy targeted block or entity server-side data to clipboard. It can only be used by operators.
; [[Particles]]
* Drip particles are now generated by [[Waterlogging|waterlogged]] blocks where appropriate.<ref>{{bug|MC-127025}}</ref>
* Drip particles now snap to the hitbox of the block they appear on.<ref>{{bug|MC-1390}}</ref>
; Other
* Fixed outstanding issues with the new improved fonts.{{more info|what exactly?}}
== Fixes ==
{{fixes|fixedin=1.13-pre7|prefix=Minecraft
|;old
| 1390 | Upper slabs with water/lava on top makes midair dripping water/lava.
| 9186 | Water does not leak through leaves and regular stairs but upside down stairs.
| 76356 | Bold unicode characters appear doubled.
| 76920 | Non-solid blocks don't show up on maps if the block below isn't solid.
| 96911 | Iron golem / VillagerGolem killing monster it is riding has broken AI.
| 111755 | Minecraft can crash when failing to connect to a server.
| 115987 | Enderman sounds are <code>entity.endermen.xx</code>.
| 118998 | Cannot open URLs on Linux with X11.
| 132833 | Opening 1.5.2 world on 1.12.2 works perfectly but bed is transparent.
|;dev
| 122596 | Command autocomplete overrides command history navigation.
| 122734 | No particles when bed explodes in the nether.
| 123087 | Fences, glass panes, iron bars, stairs, and melon/pumpkin stems in structures generate with wrong block state.
| 123369 | Trying to recreate world from future version shows no warning and can crash.
| 123769 | Some item tooltips that previously had colors don't have colors anymore.
| 123836 | Double blocks aren't loaded in structures.
| 123850 | Redstone dust doesn't update shape of connecting redstone dust when going up onto transparent blocks.
| 124015 | Red Giant Mushrooms generate with 5 blocks having wrong blockstates, thus showing wrong faces.
| 124126 | The player does not look at the block they are inside of.
| 124915 | {{cmd|locate}} and eye of ender find strongholds in invalid places.
| 125090 | Cartographer doesn't unlock woodland mansion map trades.
| 125462 | Waterlogged blocks does not decrease light level.
| 125872 | Superflat preset "The Void" doesn't generate starting platform anymore.
| 126704 | X-ray vision.
| 126998 | When their block state changes, waterlogged blocks don't remove water they let through.
| 127025 | Waterlogged blocks do not display water drip animation.
| 127093 | Water flowing onto waterlogged blocks spreads outward, rather than stopping.
| 127114 | Water in glass panes and ladders doesn't appear in maps.
| 127115 | Visually fully submerged waterlogged blocks don't appear as water on maps.
| 127224 | Waterlogged blocks that are not full blocks trigger auto-jump even if it is disabled.
| 127303 | There are no water sources near the south ceiling of flooded caves and trenches.
| 128257 | Bugged swimming animation while the head is not underwater.
| 128478 | Distance swum statistic uses old "swimming" (bobbing on top of water) instead of the new swimming.
| 129388 | Player suffocating when touching a solid block while swimming.
| 129772 | Shortest flow path of water attempts to go through blocks that can be waterlogged.
| 129773 | Pushing against a waterlogged block while in a waterlogged block causes the player to climb.
| 129892 | Selector wildcard doesn't work in scoreboard operations.
| 130072 | Pufferfish don't play the <code>entity.puffer_fish.sting</code> sound when damaging mobs.
| 130324 | Mansion couldn't generate completely.
| 130602 | Water blocks visible through the 'Targeted Block' section in {{key|F3}}.
| 131352 | Item rarity color overrides first text component's color in the held tooltip (item switching).
| 131382 | Scoreboard objective name can't be updated.
| 131945 | Looking at blocks through water show XYZ of water block in line of sight.
| 132107 | Path blocks are not updating when a block is above them.
| 132248 | Server crash on launch using Java 9 or newer.
| 132269 | Blocks invisible on map.
| 132342 | Kelp stalk under a block on map causes tile to display water texture instead of block texture.
| 132362 | decoration tag in superflat world doesn't work at all.
| 132375 | Upgrading 1.12.2 world to 1.13-pre5 crashes the game.
| 132483 | Crawling into sufficiently tight holes can cause the character to suffocate.
|;prev
| 132631 | Cannot write in the box in the Superflat presets option.
| 132632 | Can not climb 1 block height if player is in water 5 or more blocks from water source.
| 132644 | Short/narrow characters have inconsistent slant.
| 132651 | New font: Leviated characters ů ť ď Ů, darker upper pixel, too thin í.
| 132654 | {{keys|F3+I}} is missing large amounts of data.
| 132665 | Various crashes when language set to a CJK language.
| 132706 | Sticky pistons pull blocks that pop off.
| 132707 | HD SGA font doesn't work anymore.
| 132708 | Remaining ascii.png in a resource pack causes all in-game font to display gibberish.
| 132751 | Two chests spawned inside each other.
| 132817 | Issue loading 1.13 pre-5 world in pre-6.
| 132842 | 1 blocks wide structure aren't displayed on a maps.
| 132974 | Converting 1.12 world to 1.13 spams Chunk file at x,y is missing level data, skipping.
| 132977 | Esc key results in an older world being converted to a newer version during 'Play' menu sequence.
| 133063 | When trying to connect to an unreachable server Minecraft crashes instead of showing error message.
| 133093 | Water flow search mechanics doesn't count waterlogged blocks as closest flow destinations.
| 133136 | Crash when launching the game with LWJGL allocation debugging enabled.
| 133139 | The image write callback is never freed, leaking small amounts of memory for each screenshot.
| 133140 | The GL debug message callbacks are never freed, causing memory leak warnings.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|mYucCbx0K54}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13-pre7]]
[[es:Java Edition 1.13-pre7]]
[[fr:Édition Java 1.13-pre7]]
[[ja:Java Edition 1.13-pre7]]
[[nl:1.13-pre7]]
[[pt:Edição Java 1.13-pre7]]
[[ru:1.13-pre7 (Java Edition)]]
[[zh:Java版1.13-pre7]]

114
wiki_backup/1.13-pre8.txt Normal file
View file

@ -0,0 +1,114 @@
{{Infobox version
|title=Minecraft 1.13-pre8
|image=1.13-pre1.jpg
|image2=Java Edition 1.13-pre8.png
|edition=Java
|type=Pre-release
|date=July 13, 2018
|clienthash=fbece4a24e47af57c3ee75e331f9390309f92ae5
|jsonhash=aa97bdcf593e6ff67b0b044590eae96ac81c5572
|serverhash=b04f82ae0f3018c4c22a153184b385012c4d0814
|parent=1.13
|prevparent=1.12.2
|prev=1.13-pre7
|next=1.13-pre9
|nextparent=1.13.1
}}<onlyinclude>
'''1.13-pre8'''<ref>{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 8|July 13, 2018}}</ref> is the eighth pre-release for [[Java Edition 1.13]].
== Additions ==
=== Blocks ===
* Added [[dead coral fan]]s.
** Dead variants of [[coral fan]]s.
** Can be placed on side and top of blocks.
=== Command format ===
* Added {{cmd|team modify ''<team>'' displayName}}
* Added {{cmd|scoreboard objectives modify ''<objective>'' rendertype ''hearts''}}
** Makes health bars display as hearts, like this: {{Healthbar|12}}.
* Added {{cmd|scoreboard objectives modify ''<objective>'' rendertype ''integer''}}
** Makes health bars display as yellow numbers, like this: <span style="font-family: Minecraft; color: #ff5; background-color: #3F3F15; padding: 4px;">12</span>.
=== General ===
; [[Tag]]s
* Added the block tag <code>wall_corals</code>.
* Added the block tag <code>impermeable</code>. Blocks in the tag are prevented from showing dripping liquid particles. By default, the tag contains [[glass]] and all stained glass blocks.
; Options
* Re-added the "Force Unicode Font" option to the language section.
; [[Splash]]es
* Added the "Truly gone fishing!" splash.
== Changes ==
=== Blocks ===
; [[Coral fan]]s
* Can now be placed on top of blocks.
* Can now be placed in air.
** Unless adjacent to water, they turn into dead coral fans after a short moment.
* Renamed <code>''<variant>''_coral_fan</code> into <code>''<variant>''_coral_wall_fan</code>.
* Added <code>''<variant>''_coral_fan</code> blocks, which are coral fans placed on top of blocks.
=== Mobs ===
* Mobs can now stand in the most shallow form of flowing water.
=== Command format ===
* Team names and objective names are now text components, not raw strings.
* {{cmd|team|option}} is now {{cmd|team|modify}}.
=== General ===
;Worlds
* Worlds previously generated with the [[Old Customized|Customized]] world type can now be loaded again, but new chunks are generated with the Default world type.
== Fixes ==
{{fixes|fixedin=1.13-pre8|prefix=Minecraft
|;old
| 60995 | Maps inconsistent over restarts.
| 68565 | Monsters spawn at daytime at y{{=}}256 and don't burn.
| 88632 | Unable to open command blocks & no particles when opening to LAN.
| 109958 | Shulkers teleport (and stay) below Y:0.
|;dev
| 123265 | Spectator mode tooltips not showing.
| 123447 | Skin not visible in spectator mode GUI.
| 124955 | Bottoms of large ferns and tall grass are generating in place of regular ferns and grass in taiga biomes.
| 128858 | Distance given by {{cmd|locate}} is inaccurate.
| 129169 | Coral fan lacks death variants.
| 129853 | Team and objective names cannot be in JSON.
|130018|Re-creating a Customized world on 1.13 allows it to show up as a world customization option
| 132123 | Lighting for broken block not updated.
| 132174 | Tier 4 beacons will not give regeneration effect.
| 132466 | No enum constant bfz - loading and saving 1.12.2 chunks.
| 132603 | Bark recipes are not upgraded.
| 132635 | {{ctrl|Placing}} blocks with off-hand while main hand empty not possible.
| 132639 | New version of unicode font has some weird characters.
| 132649 | "Force unicode fonts" option doesn't appear in the language menu.
| 132695 | Some bold characters have either extra or lack of pixels.
| 132835 | The right "tail" of the capital ß (ẞ) seems to be a few pixels too long.
| 133030 | Subtitle <code>subtitles.entity.parrot.imitate.phantom</code> missing translation string.
| 133157 | {{ctrl|Sprinting}} in shallow water using ctrl will change FOV back and forth.
| 133198 | Redstone doesn't change direction when connected downward.
| 133214 | Sticky pistons pull glazed teracotta.
|;prev
| 133216 | Water dripping from transparent blocks.
| 133233 | Sticky pistons do not update blocks they cannot pull.
| 133277 | Texts sometimes error if the language is Chinese.
| 133325 | Double chests becoming invisible or separating with redstone.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|4ISg8yFfVMM}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13-pre8]]
[[es:Java Edition 1.13-pre8]]
[[fr:Édition Java 1.13-pre8]]
[[ja:Java Edition 1.13-pre8]]
[[nl:1.13-pre8]]
[[pt:Edição Java 1.13-pre8]]
[[ru:1.13-pre8 (Java Edition)]]
[[zh:Java版1.13-pre8]]

63
wiki_backup/1.13-pre9.txt Normal file
View file

@ -0,0 +1,63 @@
{{Infobox version
| title = Minecraft 1.13-pre9
| image = 1.13-pre1.jpg
| image2 = Java Edition 1.13-pre9.png
| edition = Java
| type = Pre-release
| date = July 16, 2018
| clienthash = 4dedcb718a3382496d19d13cfe5dc070528a15cd
| jsonhash = b54392801613930233d5f96b44662729bf23f7e0
| serverhash = ee66f5cb1247f4340734a151db4f940bbe04f833
| parent = 1.13
| prevparent = 1.12.2
| prev = 1.13-pre8
| next = 1.13-pre10
| nextparent = 1.13.1
}}<onlyinclude>
'''1.13-pre9'''<ref>{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 9|July 16, 2018}}</ref> is the ninth pre-release for [[Java Edition 1.13]].
== Additions ==
; [[Subtitles]]
* Added some missing subtitle strings.<ref>https://pokechu22.github.io/Burger/diff_1.13-pre8_1.13-pre9#language:subtitles</ref>
== Fixes ==
{{fixes|fixedin=1.13-pre9|prefix=Minecraft
|;old
| 87205 | Colored names in command blocks lose colors with arrow keys.
| 90598 | {{ctrl|Sneaking}} while {{ctrl|swimming}} or gliding changes eye height to outside the hitbox.
|;dev
| 122798 | {{cmd|spreadplayers}} and {{cmd|worldborder}} <nowiki><center></nowiki> arguments don't suggest coordinates.
| 122997 | Leaves disappear when are near logs.
| 125977 | Headless pistons do not react to block updates.
| 131821 | [[Cory Scheviak]] does not appear in credits.
| 131822 | Nondescript / confusing error message when attempting to join servers <{{=}} 1.13-pre2 using >{{=}}1.13-pre3.
| 132210 | Bug with decimal numbers in the <code>random_chance</code> condition of loot tables.
| 132652 | Username tab completion on non-empty starting strings is offset.
| 132657 | Username tab completion appears on the left when invoked without a starting string in the middle of the chat entry line.
| 132713 | 1.13-pre6 Server stops ticking and crashes when running 1.12.2 world.
| 133337 | Crash in <code>org.lwjgl.opengl.GL11.glDrawArrays</code> when opening language settings (caused by "''Couldn't find glyph for character Ʞ (<code>\ua7b0</code>)''").
|;previous
| 133446 | 1.12 world experiences gameplay lag in 1.13.
| 133503 | Control settings from 1.12.2 can get completely lost when upgrading to 1.13.
| 133630 | Maximizing from tiny window to partly full screen breaks start screen.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|dBbDyxP_mPU}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13-pre9]]
[[es:Java Edition 1.13-pre9]]
[[fr:Édition Java 1.13-pre9]]
[[ja:Java Edition 1.13-pre9]]
[[nl:1.13-pre9]]
[[pt:Edição Java 1.13-pre9]]
[[ru:1.13-pre9 (Java Edition)]]
[[zh:Java版1.13-pre9]]

View file

@ -0,0 +1,68 @@
{{Infobox version
|title=1.13.1-pre1
|image =18w33a.png
|image2=Java Edition 1.13.1-pre1.png
|edition=Java
|type=Pre-release
|date=August 16, 2018
|clienthash=7f7ae07cc319346b632f6c9f26ff8c67728b203c
|jsonhash=45558ece6af1cdd1beaa4d18c0ef984eee8598ac
|serverhash=988fec4e71e5fa1fc29a50230de05a11973d62ab
|parent=1.13.1
|prevparent=1.13
|prev=18w33a
|next=1.13.1-pre2
|nextparent=1.13.2
}}<onlyinclude>
'''1.13.1-pre1'''<ref>{{Mcnet|minecraft-snapshot-18w33a|Minecraft 1.13.1 pre-release 1|August 16, 2018}}</ref> is the first pre-release for [[Java Edition 1.13.1]], which renames {{cmd|chunk}} to {{cmd|forceload}}, improves performance, and fixes a few bugs.
== Changes ==
=== Command format ===
* Renamed {{cmd|chunk}} to {{cmd|forceload}}.
=== General ===
* Improved performance of rendering chunks.
* Improved performance of spawning mobs.
== Fixes ==
{{fixes|fixedin=1.13.1-pre1|prefix=Minecraft
|;old
|31681|Fog and clouds darken when indoors or under trees (<16 Chunk Render Distance).
|51150|Swimming in water, riding a minecart or standing on soul sand and snow layers 8 darkens the sky at day time.
|109311|Woodland mansion failed to generate.
|132457|Advancement and dimension command suggestions require minecraft namespace.
|132496|Passive Mob Spawning Breaks 1.9+.
|132762|Observed signal strength observer abnormality.
|134587|Using {{key|F3+T}} several times will eventually freeze iMac.
|135484|Pressing {{key|Q}} + right click a block while holding a double block only shows the top of the block.
|135878|Maps delete recently marked banners upon reopening world.
|;dev
|133713|{{cmd|spreadplayers}} and {{cmd|worldborder|<center>}} suggests X/Y instead of X/Z when nothing is typed.
|135392|Dimension arguments fail to properly serialize, breaking "{{cmd|chunk in}}" and "{{cmd|execute in}}" in multiplayer.
|135398|{{cmd|chunk (force{{!}}unforce)}} with {{cmd|execute store success}}.
|135424|Relative coordinates cannot be used with {{cmd|chunk}}.
|135426|Cannot tab-complete chunk coordinates in {{cmd|chunk}}.
|135428|{{cmd|chunk}} targets the overworld by default and not the sender's dimension.
|;prev
|136051|Mob spawning ignores light level, biomes and block height.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|rLJVXCNfQbU}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13.1-pre1]]
[[es:Java Edition 1.13.1-pre1]]
[[fr:Édition Java 1.13.1-pre1]]
[[ja:Java Edition 1.13.1-pre1]]
[[nl:1.13.1-pre1]]
[[pt:Edição Java 1.13.1-pre1]]
[[ru:1.13.1-pre1 (Java Edition)]]
[[zh:Java版1.13.1-pre1]]

View file

@ -0,0 +1,54 @@
{{Infobox version
|title=Minecraft 1.13.2-pre2
|image =1.13.2-pre1.png
|image2=Java Edition 1.13.2-pre2.png
|edition=Java
|type=Pre-release
|date=October 18, 2018
|clienthash=3ad1375091d9de67beb3197dcd173d05ff27dd0b
|jsonhash=d62148cdd47d2e7e524ea027bf01d5f74f26a020
|serverhash=2f39df32f20196b5a6acad117f7d6b404b069c58
|parent=1.13.2
|prevparent=1.13.1
|prev=1.13.2-pre1
|next=1.13.2
|nextparent=1.14
}}<onlyinclude>
'''1.13.2-pre2'''<ref name=1.13.2>{{Mcnet|minecraft-java-edition-1132|Minecraft Java Edition 1.13.2|October 16, 2018}}</ref> is the second and final pre-release for [[Java Edition 1.13.2]], which fixed a few bugs. This is the final pre-release to be released in 2018.
== Fixes ==
{{fixes|fixedin=1.13.2-pre2|prefix=Minecraft
|;old
|137229|Book corruption when 1.8 world is loaded in 1.13.
|136888|Game crashes when shift-right-clicking a shulker box while holding bone meal.
|136526|Crash when generating near top of world.
|;prev
|137314|Launching ''Minecraft'' 1.13.2 on Mac lags the whole system.
|137331|Hostile and neutral mobs rarely spawn in positive Z coordinates.
|137300|{{code|ConcurrentModificationException}} thrown when upgrading world.
|;private
|136759|Spawn eggs do not make sure that the entity is valid for the egg, allowing for arbitrary command execution in certain cases.<ref name=1.13.2/>
}}</onlyinclude>
== Video ==
{{Slicedlime|i8DFy0C5Iwg}}<onlyinclude>
== Trivia ==
* 1.13.2-pre2 is the last pre-release which uses the naming convention, ''version''-pre''n''. [[Java Edition 1.14|1.14]] started naming pre-releases as Pre-Release, with the R may or may not being capitalized.</onlyinclude>
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.13.2-pre2]]
[[es:Java Edition 1.13.2-pre2]]
[[fr:Édition Java 1.13.2-pre2]]
[[ja:Java Edition 1.13.2-pre2]]
[[pt:Edição Java 1.13.2-pre2]]
[[ru:1.13.2-pre2 (Java Edition)]]
[[th:รุ่น Java 1.13.2-pre2]]
[[uk:1.13.2-pre2 (Java Edition)]]
[[zh:Java版1.13.2-pre2]]

File diff suppressed because it is too large Load diff

108
wiki_backup/1.14-pre2.txt Normal file
View file

@ -0,0 +1,108 @@
{{Infobox version
|title=Minecraft 1.14 Pre-Release 2
|image=1.14-pre1.png
|image2=Java Edition 1.14 Pre-Release 2.png
|edition=Java
|type=Pre-release
|date=April 12, 2019
|clienthash=7d41669ddd780baecab2926d6ea6b08dac7d834f
|jsonhash=ed347c4d701b86e5f4ec3388284db48ddf90cd4d
|serverhash=353cc74b9aefd4675730449f50f5c0066063ac3f
|parent=1.14
|prevparent=1.13.2
|prev=1.14 Pre-Release 1
|next=1.14 Pre-Release 3
|nextparent=1.14.1
}}<onlyinclude>
'''1.14 Pre-Release 2''' is the second pre-release for [[Java Edition 1.14]], released on April 12, 2019,<ref>{{Mcnet|minecraft-1-14-pre-release-1|Minecraft 1.14 Pre-Release 2|April 12, 2019}}</ref> which adds 2 new [[advancement]]s, a new Mouse Settings menu and increases performance.
== Additions ==
=== General ===
; [[Advancement]]s
* Added 2 new advancements:
** ''Voluntary Exile'' Kill a [[raid captain]].
** ''Hero of the Village'' Successfully defend a [[village]] from a [[raid]].
== Changes ==
=== Items ===
; [[Illager banner]]
* Renamed to ominous banner.
=== General ===
; [[Options]]
* Sensitivity, invert mouse and touchscreen mode have been moved to a subsection "mouse settings".
* Added new options scroll sensitivity and discrete scrolling, also in "mouse settings"; these fix {{bug|MC-123773}}.
** Scroll sensitivity is a multiplier for scroll magnitude; the setting was first added in [[18w21a]] but was only accessible by editing <code>mouseWheelSensitivity</code> in [[options.txt]].
** Discrete scrolling tells the game to ignore scroll magnitude values given by the operating system and instead to act as if the operating system supplied &minus;1 or +1. <!-- i.e. signum(input) --> These will be influenced by the sensitivity afterward if needed.
** If unwanted scrolling occurs, enable discrete scrolling and set the sensitivity to 1.
; Performance
* Improved performance.
; [[Statistics]]
* Added new statistics:
** Bells rung
** Interactions with cartography table
** Interactions with loom
** Interactions with stonecutter
** Raids triggered
** Raids won
== Fixes ==
{{fixes|fixedin=1.14 Pre-Release 2|prefix=Minecraft
|;old
|123773|Scrolling the hotbar on Mac behaves weirdly.
|133205|Missing block with superflat preset "The Void".
|134282|Game crash with "{{cd|Unexpected error}}" if display is turned off then on again.
|147602|Changing full screen resolution doesn't work on 4k screens.
|;dev
|137581|Destroyed shulker boxes are lost in creative mode.
|138444|Tall sea grass doesn't drop sea grass when sheared.
|140236|Using the grindstone on an item to remove enchants does not reset the XP price to add enchants to it in an anvil.
|140261|When putting only one non-enchanted item in the grindstone GUI, the same item appears as the output.
|140365|Pillager outposts remove the ground around it.
|140605|New Villages : houses too high/low with grass at their bases.
|141253|Zombie villagers in certain biomes don't spawn with their biome specific skins.
|143410|Wandering trader and trader llama spawn in the void biome.
|143998|Switching in smoker between "Showing all" and "Showing smokable" does not work.
|144242|Foxes' heads never move.
|145698|Villager trades do not lock in dedicated servers.
|145738|All town centers in village now generate in ground and creates many holes in superflat world.
|145808|When highlighted, Sensitivity slider may jump to lowest or highest value by clicking the scrolling part of the screen.
|145848|Players can sleep in the same beds as villagers.
|145916|Food that can be planted cannot be eaten while targeting a block.
|146184|Naturally generated villagers don't move.
|146251|Farmers do not look at plants when they are working.
|146995|Villagers do not immediately replant crops.
|147338|Bright spots underwater ocean lighting errors.
|147361|Pillager outposts generate in the ground in superflat.
|147565|Foxes body model are 2 pixel higher when sleeping.
|147566|Baby fox hitbox is shifted.
|147572|Suspicious stews of saturation from shipwrecks and villagers still have a lasting effect.
|147598|Baby foxes don't drop items they're holding when they die.
|147606|Polar bear attack sound never changes pitch, even if the roar comes from a baby polar bear.
|147654|Baby fox's head is off center.
|;prev
|147754|Crash while opening world / while ticking entity: "{{cd|1=IllegalStateException: POI data mismatch: already registered at ev{x=##, y=##, z=##} }}".
|147800|Chunks nearby getting a full reset if load with 1.14pre1.
|147951|Cartography table does not lock maps.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|bLz6ruvCU_Y}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14-pre2]]
[[es:Java Edition 1.14 Pre-Release 2]]
[[fr:Édition Java 1.14 Pre-Release 2]]
[[ja:Java Edition 1.14 Pre-Release 2]]
[[pt:Edição Java 1.14 Pre-Release 2]]
[[ru:1.14 Pre-release 2 (Java Edition)]]
[[zh:Java版1.14-pre2]]

80
wiki_backup/1.14-pre3.txt Normal file
View file

@ -0,0 +1,80 @@
{{Infobox version
|title=Minecraft 1.14 Pre-Release 3
|image=1.14-pre1.png
|image2=Java Edition 1.14 Pre-Release 3.png
|edition=Java
|type=Pre-release
|date=April 16, 2019
|clienthash=12f85e0b940f3649c9ecb5a3201811f56992e5c0
|jsonhash=3954faa41100368488e8657a15056b0e742a6972
|serverhash=6b747e1338e1aa058146032a659cf654c446552d
|parent=1.14
|prevparent=1.13.2
|prev=1.14 Pre-Release 2
|next=1.14 Pre-Release 4
|nextparent=1.14.1
}}<onlyinclude>
'''1.14 Pre-Release 3''' is the third pre-release for [[Java Edition 1.14]], released on April 16, 2019,<ref>{{Mcnet|minecraft-1-14-pre-release-1|Minecraft 1.14 Pre-Release 3|April 16, 2019}}</ref> which fixes bugs and slightly changes the texture of the [[bell]].
== Changes ==
=== Blocks ===
; [[Bell]]s
* Texture has been slightly changed.
== Fixes ==
{{fixes|fixedin=1.14 Pre-Release 3|prefix=Minecraft
|;old
|93132|Missing lighting updates for lazy chunks.
|;dev
|138114|Chunk loading/generation is significantly slower than 1.13.2.
|139382|Stonecutter does not cull the face below it.
|137935|Skeletons do not shoot player when seeking shelter from sun.
|139446|Sky light not recalculated when blocks placed in air with {{cmd|fill}} command.
|141990|Cartography table does not update when cloning maps.
|142134|Light sources spontaneously not working in some chunks.
|142548|Lighting inside buildings too bright/patchy.
|144107|Miscalculation of camera position in windowed mode on Linux with KDE.
|144111|Foxes get stuck after pouncing.
|144114|Foxes can walk/slide while sleeping.
|145944|Villagers travel up water really quick.
|145952|Iron golem and villagers can leave their village.
|146272|Double screen bounce with new sneak/crouch changes.
|146978|Hero of the Village effect obtained naturally makes the player give off particles.
|147305|Player crouches with a delay.
|147363|"Villager disagrees" sound is played twice when right-clicking a villager without trades.
|147387|Ravagers with a passenger won't attack players and iron golems.
|147646|Mobs will go to village centers and attack the air.
|147770|Reduced speed while auto-crouching affects players in spectator mode.
|147772|Horses can glitch when moving up blocks.
|147799|Strange TNT behavior.
|147853|Animals cannot get out of water.
|147884|Can't unspectate shulkers.
|147897|Riding entities down elevation deals damage on dismount (again).
|147913|Shearing sheep does not use shears' durability.
|;prev
|148000|Enchanted books cannot be disenchanted with the grindstone.
|148009|Failed to load Realms module error.
|148031|Spectator flying slows down in solid blocks.
|148037|Light level decreases on blocks as Y-level increases.
|148045|Same items types on ground don't stack together.
|148185|Duplicate maps using cartography table.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|la1otBp3B1M}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14-pre3]]
[[es:Java Edition 1.14 Pre-Release 3]]
[[fr:Édition Java 1.14 Pre-Release 3]]
[[ja:Java Edition 1.14 Pre-Release 3]]
[[pt:Edição Java 1.14 Pre-Release 3]]
[[ru:1.14 Pre-release 3 (Java Edition)]]
[[zh:Java版1.14-pre3]]

81
wiki_backup/1.14-pre4.txt Normal file
View file

@ -0,0 +1,81 @@
{{Infobox version
|title=Minecraft 1.14 Pre-Release 4
|image=1.14-pre1.png
|image2=Java Edition 1.14 Pre-Release 4.png
|edition=Java
|type=Pre-release
|date=April 17, 2019
|clienthash=9d2f8dd80ddc2008ed87681186af5321cdb6e560
|jsonhash=b0c367198170b890ecff1facd31b73a7baae8cff
|serverhash=cf967a23b452ab474bf7bcb69fd029a5f8b84bba
|parent=1.14
|prevparent=1.13.2
|prev=1.14 Pre-Release 3
|next=1.14 Pre-Release 5
|nextparent=1.14.1
}}<onlyinclude>
'''1.14 Pre-Release 4''' is the fourth pre-release for [[Java Edition 1.14]], released on April 17, 2019,<ref>{{Mcnet|minecraft-1-14-pre-release-1|Minecraft 1.14 Pre-Release 4|April 17, 2019}}</ref> which decreases health of [[fox]]es, fixes bugs and makes changes to the default font.
== Additions ==
=== General ===
; [[Font]]
* Added more characters to the default font.
* Corrected several glyphs.
== Changes ==
=== Mobs ===
; [[Fox]]es
* Now has {{hp|10}} health opposed to {{hp|20}} health like the player in previous snapshots.
== Fixes ==
{{fixes|fixedin=1.14 Pre-Release 4|prefix=Minecraft
|;old
|145132|"ĝ" character is missing a pixel
|101233|Burned out redstone torch map causes memory leak.
|133169|Couldn't find glyph for character Ʞ (\ua7b0).
|134124|Cyrillic Ү and ү characters are not displayed properly.
|146931|Certain letters in Upside Down English do not use the correct font.
|;dev
|144173|When foxes eat a soup they eat the whole bowl.
|144346|Composter bottom texture uses side texture.
|145736|{{code|taiga_meeting_point_2}} has two logs that are rotated incorrectly.
|145762|Villagers do not go to their appropriate work site.
|146279|"POI data mismatched" logged when interacting with or breaking POI blocks.
|146399|Villagers are not changing professions after their career block has been destroyed.
|146528|Raid bar will disappear after being filled in villages created in nether.
|146615|Looms are backwards in village house.
|147316|Villager GUI right edge is missing/incomplete.
|147755|Player can still move at normal speed and sprint when "crawling" in a one block tall space.
|147845|{{code|resources.zip}} in world folder makes game crash when clicking resource packs button.
|148044|Foxes look weirdly at players after killing rabbit/chicken when jumping.
|148091|Ominous banners are called "{{code|block.minecraft.illager_banner}}".
|148192|Music slider does not affect volume.
|148210|The merchant can be summoned with a negative age which has the effect that he has the hitbox of a baby villager.
|148356|Foxes holding items are lowered by a pixel or two.
|148357|Foxes still run away from wolves, even if they are tamed.
|148358|Baby foxes holding items are shifted.
|148383|Right-clicking cartography table output when duplicating map causes loss of second map.
|148466|Foxes have 20 health points.
|;prev
|148504|Mobs aren't affected by sunlight.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|-ijAclD-Wi4}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14-pre4]]
[[es:Java Edition 1.14 Pre-Release 4]]
[[fr:Édition Java 1.14 Pre-Release 4]]
[[ja:Java Edition 1.14 Pre-Release 4]]
[[pt:Edição Java 1.14 Pre-Release 4]]
[[ru:1.14 Pre-release 4 (Java Edition)]]
[[th:รุ่น Java 1.14 Pre-Release 4]]
[[zh:Java版1.14-pre4]]

58
wiki_backup/1.14-pre5.txt Normal file
View file

@ -0,0 +1,58 @@
{{Infobox version
|title=Minecraft 1.14 Pre-Release 5
|image=1.14-pre1.png
|image2=Java Edition 1.14 Pre-Release 5.png
|edition=Java
|type=Pre-release
|date=April 18, 2019
|clienthash=3e61d082391ad8d25c40d5825cae8843cfeaf579
|jsonhash=c122c7e15e90ffcfee53c642c9ba601e4365df20
|serverhash=5d550762b9c82ab4fe9f259c14fcf7bf7ed8017a
|parent=1.14
|prevparent=1.13.2
|prev=1.14 Pre-Release 4
|nextparent=1.14.1
}}<onlyinclude>
'''1.14 Pre-Release 5''' is the fifth and final pre-release for [[Java Edition 1.14]], released on April 18, 2019,<ref>{{Mcnet|minecraft-1-14-pre-release-1|Minecraft 1.14 Pre-Release 5|April 18, 2019}}</ref> which mainly updates the game's credits.
== Changes ==
=== General ===
; [[Block entities]]
* Are now ticked correctly.
; [[Credits]]
* Updated the game credits to include more Mojang staff.
; Optimizations
* Optimized [[nether portal]]s
** They now keep the other side loaded for 15 seconds after an entity goes through.
== Fixes ==
{{fixes|fixedin=1.14 Pre-Release 5|prefix=Minecraft
|;old
|140680|Animals not spawning after adding grass to completely mobless superflat worlds.
|;dev
|141885|Game crashed when firing a firework rocket at the feet of an entity.
|148394|Wandering trader becomes stuck in water.
|;prev
|148607|After the player dies, redstone loops and command block loops stop.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|CiKWBfiQrf0}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14-pre5]]
[[es:Java Edition 1.14 Pre-Release 5]]
[[fr:Édition Java 1.14 Pre-Release 5]]
[[ja:Java Edition 1.14 Pre-Release 5]]
[[pt:Edição Java 1.14 Pre-Release 5]]
[[ru:1.14 Pre-release 5 (Java Edition)]]
[[zh:Java版1.14-pre5]]

View file

@ -0,0 +1,52 @@
{{Infobox version
|title=Minecraft 1.14.1 Pre-Release 2
|image=1.14.1-pre1.jpg
|image2=Java Edition 1.14.1 Pre-Release 2.png
|edition=Java
|type=Pre-release
|date=May 9, 2019
|clienthash=4074da2da9e8207c022e5e12355d4fe87063b86b
|jsonhash=c6d68bf27f963a13b2110728cb15d77925b9b137
|serverhash=ea3a8bee27e1ca4185bf703fb4e414800f533fc9
|parent=1.14.1
|prevparent=1.14
|prev=1.14.1 Pre-Release 1
|nextparent=1.14.2
}}<onlyinclude>
'''1.14.1 Pre-Release 2''' is the second and final pre-release for [[Java Edition 1.14.1]], released on May 7, 2019,<ref>{{Mcnet|minecraft-1-14-1-pre-release-1|Minecraft 1.14.1 Pre-Release 1|May 7, 2019}}</ref> which fixes several bugs.
== Changes ==
; [[Campfire]]s
* Can now be lit by flaming [[arrow]]s.
== Fixes ==
{{fixes|fixedin=1.14.1 Pre-Release 2|prefix=Minecraft
|;From 1.14
|150218|Spawning algorithm stops at chunk borders.
|150785|Villagers and iron golems count towards the passive mob cap.
|150847|Can load crossbow with air.
|;prev
|151057|Redstone components sometimes do not get updated properly.
|151068|Crash when breaking a work station: {{cd|Ticking entity}}.
|151097|Villagers cannot use doors.
|151126|Villagers will not detect beds when doors are in the way.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|LK_7GfqqJiw}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14.1-pre2]]
[[es:Java Edition 1.14.1 Pre-Release 2]]
[[fr:Édition Java 1.14.1 Pre-Release 2]]
[[ja:Java Edition 1.14.1 Pre-Release 2]]
[[pt:Edição Java 1.14.1 Pre-Release 2]]
[[ru:1.14.1 Pre-release 2 (Java Edition)]]
[[zh:Java版1.14.1-pre2]]

View file

@ -0,0 +1,52 @@
{{Infobox version
|title=Minecraft 1.14.1 Pre-Release 2
|image=1.14.1-pre1.jpg
|image2=Java Edition 1.14.1 Pre-Release 2.png
|edition=Java
|type=Pre-release
|date=May 9, 2019
|clienthash=4074da2da9e8207c022e5e12355d4fe87063b86b
|jsonhash=c6d68bf27f963a13b2110728cb15d77925b9b137
|serverhash=ea3a8bee27e1ca4185bf703fb4e414800f533fc9
|parent=1.14.1
|prevparent=1.14
|prev=1.14.1 Pre-Release 1
|nextparent=1.14.2
}}<onlyinclude>
'''1.14.1 Pre-Release 2''' is the second and final pre-release for [[Java Edition 1.14.1]], released on May 7, 2019,<ref>{{Mcnet|minecraft-1-14-1-pre-release-1|Minecraft 1.14.1 Pre-Release 1|May 7, 2019}}</ref> which fixes several bugs.
== Changes ==
; [[Campfire]]s
* Can now be lit by flaming [[arrow]]s.
== Fixes ==
{{fixes|fixedin=1.14.1 Pre-Release 2|prefix=Minecraft
|;From 1.14
|150218|Spawning algorithm stops at chunk borders.
|150785|Villagers and iron golems count towards the passive mob cap.
|150847|Can load crossbow with air.
|;prev
|151057|Redstone components sometimes do not get updated properly.
|151068|Crash when breaking a work station: {{cd|Ticking entity}}.
|151097|Villagers cannot use doors.
|151126|Villagers will not detect beds when doors are in the way.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|LK_7GfqqJiw}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14.1-pre2]]
[[es:Java Edition 1.14.1 Pre-Release 2]]
[[fr:Édition Java 1.14.1 Pre-Release 2]]
[[ja:Java Edition 1.14.1 Pre-Release 2]]
[[pt:Edição Java 1.14.1 Pre-Release 2]]
[[ru:1.14.1 Pre-release 2 (Java Edition)]]
[[zh:Java版1.14.1-pre2]]

View file

@ -0,0 +1,88 @@
{{Infobox version
|title=Minecraft 1.14.2 Pre-Release 1
|image=1.14.2-pre1.jpg
|image2=Java Edition 1.14.2 Pre-Release 1.png
|edition=Java
|type=Pre-release
|date=May 16, 2019
|jsonhash=0159864166fd60a0b0e7481cbaa5c0c4ee1a1001
|clienthash=b1802f2bbe126d3b9a524a187eab1be3f346eb1c
|serverhash=1aad89bfe7a14bee70de0b07339a2f319771180f
|parent=1.14.2
|prevparent=1.14.1
|next=1.14.2 Pre-Release 2
|nextparent=1.14.3
}}<onlyinclude>
'''1.14.2 Pre-Release 1''' is the first pre-release for [[Java Edition 1.14.2]], released on May 16, 2019,<ref>{{Mcnet|minecraft-1-14-2-pre-release-1|Minecraft 1.14.2 Pre-Release 1|May 16, 2019}}</ref> which fixes several bugs.
== Changes ==
=== Blocks ===
; [[Campfire]]
* Flaming arrows can no longer light waterlogged campfires.
=== Mobs ===
; [[Parrot]]s
* Can now spawn on grass blocks instead of only tall grass.
=== Gameplay ===
; [[Raid]]s
* Raiders now only spawn in fully loaded chunks.
=== General ===
; [[Debug screen]]
* Now contains a server-side chunk count.
== Fixes ==
{{fixes|fixedin=1.14.2 Pre-Release 1|prefix=Minecraft
|;From released versions before 1.14
|16883|Villagers play the trade sound multiple times overlapping on shift-click.
|88301|Ender Dragon Breath freezes server when under or above the world
|90423|Ender Dragon makes breath attack at highest block placed in the center column of the portal.
|140174|No item pickup sound when a villager picks up an item.
|;From 1.14
|145730|Iron golem does not attack players when hitting villagers.
|147431|Max item stack amount can be skipped using new villager trades menu.
|148064|"Ghost" end crystals stay behind after destruction on ender dragon respawns.
|148073|Beacon beam doesn't have the correct color if the colored glass is not directly on top of the beacon.
|148626|Shulker boxes lose their names.
|148677|Mobs do not spawn on soul sand.
|148805|Breaking an empty shulker box in creative mode causes it to drop itself.
|148847|Guardian zapping noise is looped when played.
|149225|The game crashes immediately after selecting and starting a world on Mac OS Mojave, caused by libobjc.A.dylib
|149511|No sounds for villagers planting crops.
|149865|Raiders get stuck in unloaded chunks if the render distance is too low.
|149993|Cut sandstone slabs are not part of the slabs block tag.
|150170|Animals, villagers, item frames, armor stands, etc are disappearing.
|150414|Constructing and placing a beacon does not give the advancement.
|150969|The wither is attacking undead mobs.
|;From 1.14.1
|151047|Trader llamas immediately disappear when spawned with a spawn egg.
|151062|Grindstoning an enchanted book without a custom name names the new (unenchanted) book "Enchanted Book".
|151213|Observers don't trigger twice when chained and moved
|151329|Major FPS drop after running a mob farm for 30 minutes.
|151365|Flaming arrows can light waterlogged campfires.
|151418|Observers don't update redstone properly.
|151674|RegionFiles are not closed when they are evicted from cache.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|D6Sz6tyC45U}}
== Trivia ==
* This version was released ten years after the first private release of ''Minecraft'', [[Java Edition pre-Classic mc-161607|mc-161607]].
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14.2-pre1]]
[[es:Java Edition 1.14.2 Pre-Release 1]]
[[fr:Édition Java 1.14.2 Pre-Release 1]]
[[ja:Java Edition 1.14.2 Pre-Release 1]]
[[pt:Edição Java 1.14.2 Pre-Release 1]]
[[ru:1.14.2 Pre-release 1 (Java Edition)]]
[[zh:Java版1.14.2-pre1]]

View file

@ -0,0 +1,57 @@
{{Infobox version
|title=Minecraft 1.14.2 Pre-Release 2
|image=1.14.2-pre1.jpg
|image2=Java Edition 1.14.2 Pre-Release 2.png
|edition=Java
|type=Pre-release
|date=May 17, 2019
|parent=1.14.2
|prevparent=1.14.1
|prev=1.14.2 Pre-Release 1
|next=1.14.2 Pre-Release 3
|nextparent=1.14.3
|jsonhash=b868f1988a00dab80ad4978dea5d693b9d2e2b5a
|clienthash=d12a34d8584f5465a4851f77bc5a1ce05ac9d59c
|serverhash=a2cedc73237e999a5d408ecf0923a130d69d45a1
}}<onlyinclude>
'''1.14.2 Pre-Release 2''' is the second pre-release for [[Java Edition 1.14.2]], released on May 17, 2019,<ref>{{Mcnet|minecraft-1-14-2-pre-release-1|Minecraft 1.14.2 Pre-Release 2|May 17, 2019}}</ref> which modifies the game's font and fixes a few bugs.
== Additions ==
=== General ===
; [[Font]]
* Added a default Vietnamese font.
* Changed a character in default Armenian font.
* Added missing glyphs in default Hebrew and Armenian fonts.
* Added Runic alphabet to the default font.
== Fixes ==
{{fixes|fixedin=1.14.2 Pre-Release 2|prefix=Minecraft
|;From 1.14
|148627|Swimming up to a ceiling makes the player crouch.
|148898|Hebrew letters are not assigned to their correct textures.
|151227|Missing Armenian characters.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|_i2nr-4swAk}}
== Trivia ==
* This version was released 10 years and 41 minutes after [[Java Edition Classic 0.0.11a|Classic 0.0.11a]], the first publicly released version of ''Minecraft''.
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[cs:1.14.2 Pre-Release 2]]
[[de:1.14.2-pre2]]
[[es:Java Edition 1.14.2 Pre-Release 2]]
[[fr:Édition Java 1.14.2 Pre-Release 2]]
[[ja:Java Edition 1.14.2 Pre-Release 2]]
[[lzh:爪哇版一點一四點二之預二]]
[[pt:Edição Java 1.14.2 Pre-Release 2]]
[[ru:1.14.2 Pre-release 2 (Java Edition)]]
[[zh:Java版1.14.2-pre2]]

View file

@ -0,0 +1,94 @@
{{Infobox version
|title=Minecraft 1.14.3 Pre-Release 2
|image=1.14.3-pre1.jpg
|image2=Java Edition 1.14.3 Pre-Release 2.png
|edition=Java
|type=Pre-release
|date=June 7, 2019
|clienthash=a9358d6b2ac6025923155b46dc26cc74523ac130
|jsonhash=e83b743d0b5f89c7ade23a702fe9dc5674624324 |jsonfile=1.14.3-pre2
|serverhash=64caea4b63611111d775e4558341cb9718a6ff4f
|parent=1.14.3
|prevparent=1.14.2
|prev=1.14.3 Pre-Release 1
|next=1.14.3 Pre-Release 3
|nextparent=1.14.4
}}<onlyinclude>
'''1.14.3 Pre-Release 2''' (known as '''1.14.3-pre2''' in the launcher) is the second pre-release for [[Java Edition 1.14.3]], released on June 7, 2019,<ref>{{Mcnet|minecraft-1-14-3-pre-release-1?2|Minecraft 1.14.3 Pre-Release 2|June 7, 2019}}</ref> which makes changes to [[patrol]]s and [[villager]] panic behavior, and fixes bugs.
== Changes ==
=== Mobs ===
; [[Villager]]s
* Panicked villagers now have to work and sleep so they cannot be in a state of panic all the time.
* The "last slept" and "last worked" properties for villagers are now saved properly.
=== Gameplay ===
; [[Advancement]]s
* [[Saturation]] is no longer required for the "How Did We Get Here?" advancement.
; [[Enchantment]]s
* [[Protection]], [[Projectile Protection]], [[Fire Protection]], and [[Blast Protection]] are now mutually exclusive again, as they were prior to [[Java Edition 1.14|1.14]].
; [[Illager patrol]]s
* [[Vindicator]]s are no longer part of patrols.
* Doubled the minimum time to spawn from 5 minutes to 1011 minutes.
* Patrols now follow hostile mob spawning rules.
** Patrols no longer spawn if the block light level disallows monster spawning.
** Patrols are now allowed to spawn in any biome except mushroom biomes.
=== General ===
; [[LWJGL]]
* Updated to 3.2.2.
== Fixes ==
{{fixes|fixedin=1.14.3 Pre-Release 2|prefix=Minecraft
|;From released versions before 1.14
|72390|Rcon is not thread-safe.
|124170|Performance issue with particles causing lag.
|129491|Advancement location trigger works inconsistently for structures added in 1.9 or later.
|;From 1.14
|139257|Server crash on reload when world border is modified.
|141301|Illager patrols spawning on blocks mobs should not spawn on, such as slabs, carpets, stairs, etc.
|141961|Multiple protection enchantments on a piece of armor
|142360|Pillagers patrols can spawn pillagers on top of trees inside a leaf block.
|144107|Miscalculation of camera position in windowed mode on Linux.
|144929|When there is water above a water source, other water sources adjacent to the water source flow outwards.
|146433|Double chest does not display custom name.
|148354|Guardians require water to spawn from spawners.
|148600|Zombie pigmen will spread their anger forever if they can continuously respawn.
|148986|Low-tier enchants from level 30 standard enchanting setups.
|149207|Water with blocks above will convert to flowing water for no reason.
|149877|Baby foxes suffocate when jumping under blocks.
|150401|Chickens suffocate if jumping while under a solid block.
|150954|Pillager patrol spawning is off: they spawn too close to each other, in odd biomes, and too frequently.
|;From 1.14.1
|151566|Pillagers patrols can spawn outside world border.
|151989|Players in survival do not get the dolphin's grace effect if the dolphin cannot path to the player.
|152638|Villager trade GUI does not close when a major change happens to the villager, leading to free trades and quick stock refreshing.
|;From 1.14.2
|152182|Trading halls are non-viable: employed villagers sometimes un-bond from an existing workbench within 2 blocks, apprentice ranks and above cannot re-bond unless moved 96 blocks away and back.
|153221|Dragon fireball causes FPS to crash.
|;prev
|153714|Old graphics card warning on Mac despite having recent hardware.
|153730|{{cmd|reload}} does not work if there are too many new data packs.
|153734|Vanilla data pack disabled after upgrading a world to 1.14.3 (items do not drop, fishing does not work, no advancements, etc).
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|ssy9nFZI3fk}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14.3-pre2]]
[[es:Java Edition 1.14.3 Pre-Release 2]]
[[fr:Édition Java 1.14.3 Pre-Release 2]]
[[ja:Java Edition 1.14.3 Pre-Release 2]]
[[pt:Edição Java 1.14.3 Pre-Release 2]]
[[ru:1.14.3 Pre-release 2 (Java Edition)]]
[[zh:Java版1.14.3-pre2]]

View file

@ -0,0 +1,53 @@
{{Infobox version
|title=Minecraft 1.14.3 Pre-Release 4
|image=1.14.3-pre1.jpg
|image2=Java Edition 1.14.3 Pre-Release 4.png
|edition=Java
|type=Pre-release
|date=June 19, 2019
|clienthash=7f35f02e03ad1b837d0302c874e8cbc662bf1b88
|jsonhash=da615805ddafebbfdba8f977793988328bfe2bea
|jsonfile=1.14.3-pre4
|serverhash=d5397db937499277165abb27f8af04885be8b6b6
|parent=1.14.3
|prevparent=1.14.2
|prev=1.14.3 Pre-Release 3
|nextparent=1.14.4
}}<onlyinclude>
'''1.14.3 Pre-Release 4''' (known as '''1.14.3-pre4''' in the launcher) is the fourth and final pre-release for [[Java Edition 1.14.3]], released on June 19, 2019,<ref>{{Mcnet|minecraft-1-14-3-pre-release-1?4|Minecraft 1.14.3 Pre-Release 4|June 14, 2019}}</ref> which fixes bugs.
== Fixes ==
{{fixes|fixedin=1.14.3 Pre-Release 4|prefix=Minecraft
|;From 1.14
|99198|Villagers cannot breed using beetroot
|145202|Blazes can see through blocks they should not be able to.
|;dev
|154082|The world border is no longer solid.
|;prev
|154499|Item frames in the world disappear and cause multiple error messages in the server console, and placing an item frame causes the client to crash.
|154506|Zombie pigmen do not become aggressive to players even if the alarmed pigman has a clear line of sight.
|154602|End cities being generated causes the game to crash.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|8JjQdqLYHMQ}}
== Trivia ==
* [[1.14.3 - Combat Test]] is a fork of this version.
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14.3-pre4]]
[[es:Java Edition 1.14.3 Pre-Release 4]]
[[fr:Édition Java 1.14.3 Pre-Release 4]]
[[ja:Java Edition 1.14.3 Pre-Release 4]]
[[ko:Java Edition 1.14.3 프리릴리스 4]]
[[pt:Edição Java 1.14.3 Pre-Release 4]]
[[ru:1.14.3 Pre-release 4 (Java Edition)]]
[[zh:Java版1.14.3-pre4]]

View file

@ -0,0 +1,99 @@
{{Infobox version
|title=Minecraft 1.14.4 Pre-Release 1
|image=1.14.4-pre1.jpg
|image2=Java Edition 1.14.4 Pre-Release 1.png
|edition=Java
|type=Pre-release
|date=July 3, 2019
|clienthash=bcabf6e9e9664796bd97e01c54d1dbf27aa47c39
|jsonhash=825d0302ed7d7b55616319cff67a6a0f989f9bb6 |jsonfile=1.14.4-pre1
|serverhash=774c5619679673ec772b0f01f363d0145a9d6b51
|parent=1.14.4
|prevparent=1.14.3
|next=1.14.4 Pre-Release 2
|nextparent=1.15
}}<onlyinclude>
'''1.14.4 Pre-Release 1''' (known as '''1.14.4-pre1''' in the launcher) is the first pre-release for [[Java Edition 1.14.4]], released on July 3, 2019,<ref>{{Mcnet|minecraft-1-14-4-pre-release-1|Minecraft 1.14.4 Pre-Release 1|July 3, 2019}}</ref> which adds a new debug report command, changes the [[suspicious stew]] effect of [[poppies]], improves performance and fixes bugs.
== Additions ==
=== Command format ===
; {{cmd|debug}}
* Added {{cmd|debug|report}}
** Used to get more detailed information while debugging performance, such as lists of [[chunk]]s and [[block entities]] in each dimension.
*** Saves this information as a <samp>.zip</samp> file in the <samp>[[.minecraft]]/debug</samp> folder.
== Changes ==
=== Items ===
; [[Suspicious stew]]
* Suspicious stew made from poppies now gives the player {{EffectLink|Night Vision}} instead of {{EffectLink|Speed}}.
=== Mobs ===
; [[Villager]]s
* Now voluntarily pick up [[Item (entity)|items]].
=== General ===
; <samp>[[client.jar]]</samp>
* Re-integrated [[Realms]] code into the client, in package <samp>com.mojang.realmsclient.dto</samp>.
* Re-added Realms assets to the client.
; Performance
* Optimized performance.
== Fixes ==
{{fixes|fixedin=1.14.4 Pre-Release 1|prefix=Minecraft
|;From released versions before 1.14
|100946|Bow with mending undraws when receiving XP while drawn.
|113968|Zombies of village siege spawn despite gamerule <code>doMobSpawning</code> being <code>false</code>.
|113970|Zombies of village siege do not spawn centered on a block.
|134964|<code>Unexpected error: java.util.NoSuchElementException</code>.
|142037|<code>java.lang.NullPointerException: Initializing game</code>.
|;From 1.14
|143755|Arbitrary score/selector/NBT resolution using lectern without operators rights.
|143886|Acacia leaves render improperly from a distance.
|146289|Farmer villagers do not stop to pick up their crops.
|147844|Pillagers do not pathfind around obstacles and out of water.
|;From 1.14.1
|152094|End city/end ship generation gets cut at chunk borders sometimes.
|152636|Killing a zombie right as it converts into a drowned will drop the loot from zombie while still converting into a drowned.
|;From 1.14.2
|153498|Cyrillic letter <code>Є</code> is not included in the ''Minecraft'' font.
|153665|Full villager inventory creates invisible items.
|153712|Java using 100200% CPU in macOS.
|154668|Invalid characters crash the game in jigsaw block input upon pressing enter.
|154830|All wall signs use oak color on maps.
|;From 1.14.3
|153766|Rabbits no longer need sand/grass in order to spawn in deserts/tundras.
|153892|Mending slows down breaking blocks.
|154019|Beacon deactivate sound not sounds when you break the base.
|154031|Villagers give away all food if they want to share it.
|154068|Parrots occasionally disappearing when you take them from a boat.
|154201|Trying to trade with villager immediately closes trading menu for some villagers.
|154362|Crossbow has to reload when mending takes place.
|154509|Bashkir letters <code>Ҙ</code>, <code>ҙ</code>, <code>Ҡ</code>, <code>ҡ</code>, <code>Ҫ</code>, and <code>ҫ</code> are not included in the ''Minecraft'' font.
|155092|Zombie sieges can happen on mushroom islands.
|155104|When closing a menu while moving the mouse, the screen will move in that direction.
|155172|Hostile wolf AI has been broken: wolves can no longer attack enemies efficiently.
|155238|Villagers picking up workstation through wall.
|155345|<code>ConcurrentModificationException</code> when a player leaves an active raid.
|155571|Silverfish and endermite spawners no longer functioning.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|qTTvkWdMsW0}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14.4-pre1]]
[[es:Java Edition 1.14.4 Pre-Release 1]]
[[fr:Édition Java 1.14.4 Pre-Release 1]]
[[ja:Java Edition 1.14.4 Pre-Release 1]]
[[ko:Java Edition 1.14.4 프리릴리스 1]]
[[pt:Edição Java 1.14.4 Pre-Release 1]]
[[ru:1.14.4 Pre-release 1 (Java Edition)]]
[[zh:Java版1.14.4-pre1]]

View file

@ -0,0 +1,44 @@
{{Infobox version
|title=Minecraft 1.14.4 Pre-Release 3
|image=1.14.4-pre1.jpg
|image2=Java Edition 1.14.4 Pre-Release 3.png
|edition=Java
|type=Pre-release
|date=July 8, 2019
|clienthash=4e7e41622e1fb083e093b071396dad50168c9613
|jsonhash=05582943711628ecc6efa1849eb23c0c51117cbe |jsonfile=1.14.4-pre3
|serverhash=b7ed47d4e600c6ead80f4c73c2e080625d07ef6e
|parent=1.14.4
|prevparent=1.14.3
|prev=1.14.4 Pre-Release 2
|next=1.14.4 Pre-Release 4
|nextparent=1.15
}}<onlyinclude>
'''1.14.4 Pre-Release 3''' (known as '''1.14.4-pre3''' in the launcher) is the third pre-release for [[Java Edition 1.14.4]], released on July 8, 2019,<ref>{{Mcnet|minecraft-1-14-4-pre-release-1|Minecraft 1.14.4 Pre-Release 3|July 8, 2019}}</ref> which adds a [[splash]] and attempts to fix a chunk loading lag issue unsuccessfully.<ref name="mc151082">{{bug|MC-151082}}: Marked as "Fixed" for this version but later reopened.</ref>
== Additions ==
; [[Splash]]es
* Added "Ping the human!".</onlyinclude>
== Video ==
{{video note|The performance fix mentioned in this video was unsuccessful.<ref name="mc151082"/>|inaccurate}}
Video made by [[slicedlime]]:
{{yt|awlNs3enL9s}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14.4-pre3]]
[[es:Java Edition 1.14.4 Pre-Release 3]]
[[fr:Édition Java 1.14.4 Pre-Release 3]]
[[ja:Java Edition 1.14.4 Pre-Release 3]]
[[ko:Java Edition 1.14.4 프리릴리스 3]]
[[lzh:爪哇版一點一四點四之預三]]
[[pt:Edição Java 1.14.4 Pre-Release 3]]
[[ru:1.14.4 Pre-release 3 (Java Edition)]]
[[zh:Java版1.14.4-pre3]]

View file

@ -0,0 +1,54 @@
{{Infobox version
|title=Minecraft 1.14.4 Pre-Release 5
|image=1.14.4-pre1.jpg
|image2=Java Edition 1.14.4 Pre-Release 5.png
|edition=Java
|type=Pre-release
|date=July 11, 2019
|clienthash=db91103c10795811477ec33589b2e1cf452f43f2
|jsonhash=bbcefa7363b685d64b73f707d0045c5d64b0ff6c |jsonfile=1.14.4-pre5
|serverhash=f45379dfa2ecd946a2ed81c354225a4181261333
|parent=1.14.4
|prevparent=1.14.3
|prev=1.14.4 Pre-Release 4
|next=1.14.4 Pre-Release 6
|nextparent=1.15
}}<onlyinclude>
'''1.14.4 Pre-Release 5''' (known as '''1.14.4-pre5''' in the launcher) is the fifth pre-release for [[Java Edition 1.14.4]], released on July 11, 2019,<ref>{{Mcnet|minecraft-1-14-4-pre-release-1|Minecraft 1.14.4 Pre-Release 5|July 11, 2019}}</ref> which fixes some bugs.
== Fixes ==
{{fixes|fixedin=1.14.4 Pre-Release 5|prefix=Minecraft
|;From 1.14
|149880|Villager trades wrong book.
|156349|Cannot press Enter on direct connect.
|;From 1.14.1
|151282|Villager trade GUI does not show the correct price on servers if trade demand is high.
|;dev
|156042|Villager demand never goes down over time unless traded with.
|otherissuescount=2
}}
; Other
* Fixed debug reports in worlds with a dot in their name.
* Fixed servers freezing when villagers fall into the void.</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|j7Dk3_TAdog}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.14.4-pre5]]
[[es:Java Edition 1.14.4 Pre-Release 5]]
[[fr:Édition Java 1.14.4 Pre-Release 5]]
[[ja:Java Edition 1.14.4 Pre-Release 5]]
[[ko:Java Edition 1.14.4 프리릴리스 5]]
[[lzh:爪哇版一點一四點四之預五]]
[[pt:Edição Java 1.14.4 Pre-Release 5]]
[[ru:1.14.4 Pre-release 5 (Java Edition)]]
[[zh:Java版1.14.4-pre5]]

View file

@ -0,0 +1,62 @@
{{Infobox version
|title=Minecraft 1.14.4 Pre-Release 6
|image=1.14.4-pre1.jpg
|image2=Java Edition 1.14.4 Pre-Release 6.png
|edition=Java
|type=Pre-release
|date=July 15, 2019
|clienthash=338cd13bb237252c59b59043b49340e545fa1722
|jsonhash=3e1a43d544fe15d6756c7461955c7f1899a54e9d |jsonfile=1.14.4-pre6
|serverhash=d7b8f310278a5ea9efef03b4e441f12524253c5d
|parent=1.14.4
|prevparent=1.14.3
|prev=1.14.4 Pre-Release 5
|next=1.14.4 Pre-Release 7
|nextparent=1.15
}}<onlyinclude>
'''1.14.4 Pre-Release 6''' (known as '''1.14.4-pre6''' in the launcher) is the sixth pre-release for [[Java Edition 1.14.4]], released on July 15, 2019,<ref name="pre6">{{Mcnet|minecraft-1-14-4-pre-release-1|Minecraft 1.14.4 Pre-Release 6|July 15, 2019}}</ref> which improves performance, removes the camera pivot offset in first-person mode, and fixes some bugs.
== Changes ==
=== General ===
; Camera
* Removed the camera pivot offset when in first-person view.<!-- when was this added? -->
; Performance
* Improved performance.
* Improved chunk loading when traveling at high speeds.
== Fixes ==
{{fixes|fixedin=1.14.4 Pre-Release 6|preยะจะยดfix=Minecraft
|;From 1.14
|149018|High idle CPU usage on server.
|;From 1.14.3
|154271|Rolling shutter issue on macOS.
|;dev
|156451|Velocity resets when breaking blocks occasionally.
|otherissuescount=1
}}
; Other
* Fixed a memory leak.<ref name="pre6"/></onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|jt-5iqJd8Xk}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[cs:1.14.4 Pre-Release 6]]
[[de:1.14.4-pre6]]
[[es:Java Edition 1.14.4 Pre-Release 6]]
[[fr:Édition Java 1.14.4 Pre-Release 6]]
[[ja:Java Edition 1.14.4 Pre-Release 6]]
[[ko:Java Edition 1.14.4 프리릴리스 6]]
[[lzh:爪哇版一點一四點四之預六]]
[[pt:Edição Java 1.14.4 Pre-Release 6]]
[[ru:1.14.4 Pre-release 6 (Java Edition)]]
[[zh:Java版1.14.4-pre6]]

View file

@ -0,0 +1,58 @@
{{Infobox version
|title=Minecraft 1.14.4 Pre-Release 7
|image=1.14.4-pre1.jpg
|image2=Java Edition 1.14.4 Pre-Release 7.png
|edition=Java
|type=Pre-release
|date=July 18, 2019
|clienthash=53bf70e446ecfb4a88a7546ab3479c4cc868e143
|jsonhash=7017bcd84c1f27c89c6cb4a8c117468c1e6d0723 |jsonfile=1.14.4-pre7
|serverhash=98d1396495562dbb32828ef50bad7112c403c47e
|parent=1.14.4
|prevparent=1.14.3
|prev=1.14.4 Pre-Release 6
|nextparent=1.15
}}<onlyinclude>
'''1.14.4 Pre-Release 7''' (known as '''1.14.4-pre7''' in the launcher) is the seventh and final pre-release for [[Java Edition 1.14.4]], released on July 18, 2019,<ref>{{Mcnet|minecraft-1-14-4-pre-release-1|Minecraft 1.14.4 Pre-Release 7|July 18, 2019}}</ref> which fixes some bugs and improves performance.
== Changes ==
=== General ===
; Performance
* Performance optimizations for leaf rendering.
== Fixes ==
{{fixes
|fixedin=1.14.4 Pre-Release 7|prefix=
|;From 1.14
|150623|{{cd|The game crashed whilst rendering overlay: Unable to fit texture.}}
|;From 1.14.3
|156389|Game crashes when pressing {{key|Shift + Command + Delete}} to remove 18 characters at once on an anvil.
|;dev
|156407|Unobtainable (speed) suspicious stew can be obtained from villagers.
|156574|Villagers demand values increase/decrease indefinitely.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|mLS0Z1a1Hx4}}
== Trivia ==
* This pre-release was released exactly a year after [[Java Edition 1.13|1.13]].
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[cs:1.14.4 Pre-Release 7]]
[[de:1.14.4-pre7]]
[[es:Java Edition 1.14.4 Pre-Release 7]]
[[fr:Édition Java 1.14.4 Pre-Release 7]]
[[ja:Java Edition 1.14.4 Pre-Release 7]]
[[ko:Java Edition 1.14.4 프리릴리스 7]]
[[lzh:爪哇版一點一四點四之預七]]
[[pt:Edição Java 1.14.4 Pre-Release 7]]
[[ru:1.14.4 Pre-release 7 (Java Edition)]]
[[zh:Java版1.14.4-pre7]]

142
wiki_backup/1.15-pre1.txt Normal file
View file

@ -0,0 +1,142 @@
{{Infobox version
|title=Minecraft 1.15 Pre-release 1
|image=1.15-pre1.jpg
|image2=Java Edition 1.15 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=November 21, 2019
|clienthash=6e9fe5ad18470fd1b3318f337fca18cd94d7b9e6
|clientmap=03aacaabee208a109c80a04299a2f040115b0460
|jsonfile=1.15-pre1
|jsonhash=66a7ddfb0ec97a0f41e0862cbf43554f67bf5592
|serverhash=332b3382108e5bdb0b23717082c9b97c54ffc8ad
|servermap=a04e21b4063b92a003786402079f6d2414b1b693
|parent=1.15
|prevparent=1.14.4
|prev=19w46b
|next=1.15 Pre-Release 2
|nextparent=1.15
}}<onlyinclude>
'''1.15 Pre-r<!--sic-->elease 1''' (known as '''1.15-pre1''' in the launcher) is the first pre-release for [[Java Edition 1.15]], released on November 21, 2019,<ref>{{Mcnet|minecraft-1-15-pre-release-1|Minecraft 1.15 Pre-Release 1|November 21, 2019}}</ref> which optimizes some aspects of the game, upgrades the resource pack version, and fixes bugs.
== Additions ==
=== Blocks ===
; [[Honey block]]s
* Added unique [[subtitles]] for sliding down [[honey block]]s; previously it used footsteps subtitles.
== Changes ==
=== Blocks ===
; [[Dark prismarine]]
* Now crafted from [[black dye]] instead of [[ink sac]]s.
; [[Scaffolding]]
* Increased scaffolding burn time when used as [[fuel]] in a [[furnace]] to be able to smelt 2 [[item]]s, rather than 0.25.
=== Items ===
; [[Spawn egg]]s
* [[Zombie pigmen]] spawn eggs can now be {{control|used}} on adult zombie pigmen to spawn baby variants.
=== General ===
; Performance
* Optimized [[chunk]] rendering.
* Optimized [[explosion]]s.
; [[Resource pack]]s
* The resource pack version is now 5 (due to texture mechanic changes in earlier snapshots).
* The game now tries to make out of date resource packs work as much as possible.{{more info|How?}}
** The game can convert some of version 4 resource packs' outdated texture mechanics to the new mechanics.
; UI
* Changed appearance of highlighted buttons used in [[options]] screen and similar UIs.
** Highlighted buttons now have a white outline.
** Highlighted buttons no longer have a blue tint on them. Instead, they are now only slightly brighter than unhighlighted buttons.
== Fixes ==
{{fixes
|fixedin=1.15 Pre-release 1
|;old
|5336|Bonus chest does not always spawn on 'Snowy Kingdom' preset.
|12211|Comparator in subtraction mode does not update visually under certain conditions.
|14826|Leads in unloaded chunks break, become invisible or connect to an invisible target far away.
|63669|Comparator timing issue.
|77652|Falling Block does not have uniform transparency/non-transparency in the End.
|90602|Chunks do not load correctly/not rendering.
|93967|The smoke particles of the explosion are displayed when Particles option is set to minimal.
|94838|Comparator affected through gap.
|112292|Texture for blocks using {{cd|TileEntitySpecialRenderer}} is not bound for a short moment when entering a world and in superflat settings.
|125495|Owner tag of item entities are ignored if entity is destroyed in 200 ticks (Age >{{=}} 5800).
|125511|Item entity merging ignores {{cd|Owner}} tag.
|127005|Bottom of waterlogged blocks shows water texture.
|135110|Crash when using outdated resource pack: Non <samp>[a-z0-9/._-]</samp> character in path of location.
|146327|Reloading resource pack unsticks held item position.
|147241|Recipe grouping pop-up is darker than it should be.
|151275|Rain and snow turns gray when picking up arrows.
|161132|Leaves are considered solid faces for block placement.
|163308|Pillagers still spawning in trees in 1.14.4.
|164896|Chests, boats, and beds are not shown behind dropped stained glass.
|165524|Zombie pigman spawn eggs used on zombie pigmen do not spawn baby zombie pigmen.
|;dev
|160931|1.15 chunk rendering is slow and laggy.
|161844|Resource pack version has not been increased, despite resource packs from 1.15 snapshots being incompatible with 1.14 resource packs.
|161900|Advancement menu background is rendered in front of toasts.
|163369|Summoning a leash knot using the command is broken.
|163553|Dragon texture flickering issue.
|163560|Berry bushes no longer slow down the player.
|163745|Dramatic speed up after falling through a cobweb.
|163947|When mobs sliding down honey blocks, the subtitles will show footsteps.
|163953|{{cmd|/fill}} command does not create block entities for all bocks.
|163982|Semi-transparent entities are rendered behind clouds, transparent blocks, breaking animations, etc.
|164076|Transparent texture parts of invisible entities are rendered black when looking at them in spectator mode.
|164535|/playsound uses wrong feedback message for multiple targets.
|165133|Ignited TNT appears to offset one block to the west.
|165134|Entities are rendered too dark when in the ground.
|165153|Breaking animation no longer renders behind transparent blocks.
|165154|Entities riding boats, minecarts or other entities are rendered too dark when their hitbox intersects solid blocks.
|165155|Block hitboxes no longer render behind transparent blocks.
|165156|Transparent block items no longer render behind transparent blocks.
|165173|Bees immediately enter their nests/hives after leaving them.
|165225|Dropped items do not render behind transparent blocks.
|165252|Banners are rendered completely white when looking at them through transparent blocks.
|165276|Items held by entities do not render through transparent blocks.
|165298|Entities are rendered too dark when standing on soul sand or snow layers.
|165339|Shulker boxes do not render behind transparent blocks.
|165358|Entities are sometimes rendered too dark when changing heights.
|165422|Some player heads will only render behind tinted glass if you look at a block.
|165497|Programmer art shield pattern textures have not been updated to the new resource pack format.
|165527|Item of advancement pop up is visible on text in the advancement menu.
|165531|Conduit does not render.
|165573|Filled item frames do not show the item when viewed through glass.
|;previous
|165605|Command starting with {{cd|/}} in command block shows error but still works.
|165606|"Bee Our Guest" advancement is only triggered when more than one bottle is in the players hand while right-clicking the hive.
|165611|Enchantment glint does not render in boat interior.
|165627|Falling blocks glitch through shulkers when the shulker is opening/closing.
|165667|Hitbox of entities is not rendered through transparent blocks when viewing from certain angles
|165676|Aquatic mobs do not move below sea level.
|165727|Falling blocks on top of non-full block without block below do not break.
|165789|Under certain circumstances mob body parts don't render underwater.
|165876|Sand particles do not have gravity anymore.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|ZQCyILARYoY}}<onlyinclude>
== Trivia ==
* Like the third to seventh pre-releases of this update, but unlike the second one, the second "r" in the version name is lowercase in-game.</onlyinclude>
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[cs:1.15 Pre-release 1]]
[[de:1.15-pre1]]
[[es:Java Edition 1.15 Pre-release 1]]
[[fr:Édition Java 1.15 Pre-release 1]]
[[ja:Java Edition 1.15 Pre-release 1]]
[[pt:Edição Java 1.15 Pre-release 1]]
[[ru:1.15 Pre-release 1 (Java Edition)]]
[[zh:Java版1.15-pre1]]

126
wiki_backup/1.15-pre2.txt Normal file
View file

@ -0,0 +1,126 @@
{{Infobox version
|title=Minecraft 1.15 Pre-Release 2
|image=1.15-pre1.jpg
|image2=Java Edition 1.15 Pre-Release 2.png
|edition=Java
|type=Pre-release
|date=November 25, 2019
|clienthash=86826ed25a880827a5b0a2e330402a234e7c6f70
|clientmap=afdb13fc5be8999901a6462094caae7d0612e638
|jsonfile=1.15-pre2
|jsonhash=eb31a8c6e71b08568b0b76c96bfe0935ba25367a
|serverhash=0f0c2e3c25693189374c8a63179e3018ebfdc1ba
|servermap=07c86abdff70367e0458e58b6a2427a869205397
|parent=1.15
|prevparent=1.14.4
|prev=1.15 Pre-release 1
|next=1.15 Pre-release 3
|nextparent=1.15
}}<onlyinclude>
'''1.15 Pre-Release 2''' (known as '''1.15-pre2''' in the launcher) is the second pre-release for [[Java Edition 1.15]], released on November 25, 2019.<ref>{{Mcnet|minecraft-1-15-pre-release-1|Minecraft 1.15 Pre-Release 2|November 25, 2019}}</ref>
== Additions ==
=== General ===
; [[Statistics]]
* Added statistics for [[anvil]] and [[grindstone]] interaction counts.
; [[Tag]]s
* Added new {{cd|portals}} block tag.
== Changes ==
=== Blocks ===
; [[Bed]]s
* Setting the [[respawn]] point by using a bed now shows the message "Respawn point set" in chat.
; [[Farmland]], [[grass path]] and [[soul sand]]
* Now suffocate [[mob]]s.
=== Mobs ===
; [[Fox]]es
* Now spawn in all [[taiga]] variants.<ref>{{tweet|Cojomax99|1199707553355255808|Forgot to add to the changelog of 1.15-pre2 that berry bushes and foxes should appear in /every/ taiga biome variant now!|27 Nov 2019}}</ref>
=== General ===
; [[Data pack]]s
* Upgraded data pack version to 5.
; Performance
* [[Chunk]] loading performance calculations were tweaked.
; UI
* Further changes to the appearance of highlighted buttons used in [[options]] screen and similar UIs.
** Highlighted buttons now have white text on them instead of yellow.
** Brightness of highlighted buttons are now slightly less bright. The white outline is unchanged.
=== World generation ===
; [[Sweet berries]]
* Now generate in [[giant tree taiga]] biomes.
== Fixes ==
{{fixes
|fixedin=1.15 Pre-Release 2
|;old
|19413|Horses try to "finish" pathfinding when interrupted by a player riding it.
|33285|Summoning slimes with custom {{cd|maxHealth}} attributes does not work.
|83003|Barrier particles are not visible if the barrier block is in the off-hand.
|83051|Spectral arrows, potion arrows, and Channeling tridents apply effects to endermen.
|94421|Shooting an enderman with a bow and arrow or trident will play arrow or trident collision sounds and subtitles.
|94491|Pressing {{key|Esc}} in world settings returns to the main menu instead of the world list.
|112850|Items with an empty {{cd|AttributeModifier}} tag spam the console.
|122135|Several GUIs are not closed when pressing {{key|Esc}}.
|124280|Using fire charges on TNT in Creative mode consumes the fire charge.
|129781|A trident will hit the ground after hitting an enderman.
|133348|Wrong position of elder guardian effect while swimming.
|140825|Structure palette variant selection looks faulty.
|144608|Reloading a shader with modified vert/frag files will not update it.
|147865|The elder guardian particle is displayed too high, over the player's head.
|148590|When hitting a magma with a lot of health, it causes very many particles.
|149928|Soul sand can not suffocate mobs.
|155591|Foxes can spawn in the giant spruce taiga, but not in the giant tree taiga.
|157212|Trusted fox hostile AI seems to be broken; foxes ''only'' defend players from mobs that shoot arrows, but ignore mobs that use melee attacks or projectile entities that are not arrows.
|162531|The player sneaks while sleeping if there is a lantern two blocks above the bed.
|166590|Sweet berry bushes do not generate in any type of giant tree taiga biomes.
|;dev
|163234|Flying near the top of honey blocks or soul sand in Creative slows down flight speed.
|163411|All entities but players and items do not produce particles when sliding down honey blocks.
|163665|Cooldown overlay is solid white.
|163776|Items thrown at the side of a honey block will keep their horizontal trajectory despite slower speed.
|163942|Name tag in mini horse inventory model does not billboard properly.
|164163|Glowing mobs stop glowing when invisible.
|164305|Elder guardian particle is no longer transparent.
|164368|Traveling back from the Nether creates a new portal in a random location.
|164706|The Nausea effect makes the breaking animation render incorrectly.
|165242|Hand animation is shown when trying to use a fire charge in water.
|165515|Smooth lighting does not work for beds and double chests.
|165547|Lighting of player and entities changes with the nausea effect.
|165586|Creeper and lit TNT flashing is different than before.
|165750|Falling sand drop with half in the air because of the ID box.
|;prev
|165959|Incorrectly sized textures cause mipmap levels to drop.
|166004|Getting too close to an end gateway causes the game to crash.
|166068|Default texture of {{cd|minecraft:entity/conduit/open_eye}} causes mipmap level to drop from 4 to 3 when using the ''Programmer Art'' texture pack.
|166097|The maximum height of 1×1 jungle tree is 10 instead of 12.
}}
</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|wbzpFrZFUZQ}}
== Trivia ==
* Unlike the surrounding pre-releases, the "r" in the word "pre-release" is capitalized, like how it was in [[1.14#Java Edition|1.14.''x'' pre-releases]].
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[cs:1.15 Pre-Release 2]]
[[de:1.15-pre2]]
[[es:Java Edition 1.15 Pre-Release 2]]
[[fr:Édition Java 1.15 Pre-Release 2]]
[[ja:Java Edition 1.15 Pre-Release 2]]
[[pt:Edição Java 1.15 Pre-Release 2]]
[[ru:1.15 Pre-release 2 (Java Edition)]]
[[zh:Java版1.15-pre2]]

115
wiki_backup/1.15-pre3.txt Normal file
View file

@ -0,0 +1,115 @@
{{Infobox version
|title=Minecraft 1.15 Pre-release 3
|image=1.15-pre1.jpg
|image2=Java Edition 1.15 Pre-release 3.png
|edition=Java
|type=Pre-release
|date=November 28, 2019
|clienthash=468c221358a93040097edb51f768647683fedd18
|clientmap=b8c12f42bc26c712d2464f0923b3ab6f3b93cfff
|jsonfile=1.15-pre3
|jsonhash=4cb8a8c30f16bd2c781f296374b97ecf38b6f900
|serverhash=eedb663e70f49a5592b88197ea68b0f32fd9ce97
|servermap=55fa9621c9d4f13ae06613eddd97345a9bc1c9fc
|parent=1.15
|prevparent=1.14.4
|prev=1.15 Pre-Release 2
|next=1.15 Pre-release 4
|nextparent=1.15
}}<onlyinclude>
'''1.15 Pre-release 3''' (known as '''1.15-pre3''' in the launcher) is the third pre-release for [[Java Edition 1.15]], released on November 28, 2019,<ref>{{Mcnet|minecraft-1-15-pre-release-1?3|Minecraft 1.15 Pre-Release 3|November 28, 2019}}</ref> which adds new splash texts and fixes bugs.
== Additions ==
=== General ===
; [[Splash]]es
* Added the following splash texts:
** "In case it isn't obvious, foxes aren't players."<ref>{{bug|MC-166292}}</ref>
** "Buzzy Bees!"
** "Minecraft Java Edition presents: Disgusting Bugs"
== Changes ==
=== Blocks ===
; [[Farmland]], [[grass path]] and [[soul sand]]
* No longer suffocate [[mob]]s.<ref>{{bug|MC-166718}}</ref>
; [[Sign]]s
* Made text colors on signs match how they looked in [[Java Edition 1.14|1.14]].
=== General ===
; [[Heads-up display]]
* Tweaked the transparency of the [[hotbar]].<ref>{{bug|MC-166025}}</ref>
; Performance
* Tweaked [[chunk]] loading and rendering performance further.
; Textures
* Removed transparent pixels from the [[honeycomb]] texture.
== Fixes ==
{{fixes
|fixedin=1.15 Pre-Release 3
|;old
|27287|Baby wolves spawn hurt.
|63720|Banners do not move in wind when over certain {{nbt|long|Time}} value of the <samp>[[Java Edition level format#level.dat format|level.dat]]</samp>.
|100222|Breeding wolves with rotten flesh causes Hunger to the player.
|155616|Shulkers in boats disappear after entering end gateways.
|163879|Dispenser plays failed sound when equipping a single mob head.
|164342|Barrels do not generate {{nbt|string|LootTable}} when broken.
|;dev
|161144|Baby ocelots do not spawn naturally.
|162518|Blocks in the inventory are no longer shaded properly.
|162590|Enchantment glint blur renders rough.
|163946|Tridents with one durability remaining can be thrown.
|164792|Underlined text in chat is not underlined.
|165203|Semi-transparent pixels on skin's outer layer renders wrongly in inventory model.
|165212|Snow can be placed on top of fully grown wheat.
|165550|Lighting of slimes and magma cubes becomes dark when they land to the ground.
|165707|Tamed wolves do not have 20 health points.
|165957|Block hitboxes are rendered transparent again.
|165971|TNT in a minecart with TNT is offset.
|165975|Water does not properly connect to itself.
|166025|Hotbar is almost completely opaque.
|166056|Enchantment glint does not render correctly.
|166062|Patterns on banners fill up the whole banner.
|166063|Projectile entities are flipped backward.
|166071|Banner outline is weirdly colored again.
|166110|Honeycomb item has random transparent pixels.
|166132|The {{cmd|tp}} command will not accurately face armor stands.
|166171|Shields are not rendered correctly.
|166195|Inconsistent behavior of dispensers with mob heads.
|166198|A dispenser dispenses two wither skeleton skulls instead of one if a mob or a player is right next to it.
|166312|Loom UI pattern icons are too dark.
|166333|Horse jumping is odd with elytra.
|;prev
|166374|Enchantment glint does not show on items outside of the player's inventory or in third-person mode.
|166376|Ender chests are invisible.
|166386|The player is pushed away when they are at the edge of a block of farmland, grass path or soul sand.
|166389|Silverfish suffocate inside of soul sand.
|166411|"Edit Server Info" window closes itself when clicking on text fields.
|166419|Trident can be shot through the closed shulker, wither, ender dragon and invulnerable mobs.
|166508|Glitchy chunk rendering is back.
|166535|Armor Stands rotation and position visual bug.
|166585|Banners do not have a breaking animation again.
|166684|Trying to hold {{key|Tab}} key while at the multiplayer section makes the game crash.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|yLU6O1OtTyg}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[cs:1.15 Pre-release 3]]
[[de:1.15-pre3]]
[[es:Java Edition 1.15 Pre-release 3]]
[[fr:Édition Java 1.15 Pre-release 3]]
[[ja:Java Edition 1.15 Pre-release 3]]
[[ko:Java Edition 1.15 프리릴리스 3]]
[[pt:Edição Java 1.15 Pre-release 3]]
[[ru:1.15 Pre-release 3 (Java Edition)]]
[[zh:Java版1.15-pre3]]

105
wiki_backup/1.15-pre4.txt Normal file
View file

@ -0,0 +1,105 @@
{{Infobox version
|title=Minecraft 1.15 Pre-release 4
|image=1.15-pre1.jpg
|image2=Java Edition 1.15 Pre-release 4.png
|edition=Java
|type=Pre-release
|date=December 3, 2019
|clienthash=6868a5c87243707f7936c21a4e52d076e3d73234
|clientmap=dbe86214786e8558e1d82a917b4fc0f2528c7b59
|jsonfile=1.15-pre4
|jsonhash=a6f2fc4ad5a0c5331de5ef041fb344f0a5eed8cd
|serverhash=8f9e23414a01d21e2cd313b2595b164ccfda56aa
|servermap=c6a72d934d21f5f40a6cb7230602aa1e581198dc
|parent=1.15
|prevparent=1.14.4
|prev=1.15 Pre-release 3
|next=1.15 Pre-release 5
|nextparent=1.15
}}<onlyinclude>
'''1.15 Pre-release 4''' (known as '''1.15-pre4''' in the launcher) is the fourth pre-release for [[Java Edition 1.15]], released on December 3, 2019,<ref>{{Mcnet|minecraft-1-15-pre-release-1?4|Minecraft 1.15 Pre-Release 4|December 3, 2019}}</ref> which fixes many issues relating to coordinate precision.
== Changes ==
=== General ===
; Performance
* Performance improvements.
; [[Wikipedia:Floating-point arithmetic|Floating-point]] precision
* The floating-point precision used for the location of where certain particles and entities appear was increased to 64-bit ([[wikipedia:Double-precision floating-point format|double-precision]]), from 32-bit ([[wikipedia:Single-precision floating-point format|single-precision]]).
** This fixes many issues regarding certain types of [[particles]] and [[entities]] not appearing at the right places when far away from the center of the world, especially beyond 16,777,216 (2<sup>24</sup>) blocks. The following list includes instances that are known and confirmed to be fixed:
*** [[Particle]]s
**** [[Fishing]] particles<ref>{{bug|MC-161991}}</ref>
**** [[Squid]] ink particles<ref>{{bug|MC-161994}}</ref>
**** [[End gateway]] particles<ref>{{bug|MC-161999}}</ref>
**** [[Conduit]] particles<ref>{{bug|MC-161993}}</ref>
**** Impact particles when entity has fallen from height on to block<ref name="thebigone">{{bug|MC-76810}}</ref>
**** Sweeping attack particles<ref name="thebigone"/>
**** Damage heart particles<ref name="thebigone"/>
**** Particles appearing when using the {{cmd|/particle}} command<ref name="thebigone"/>
**** [[Mycelium]] particles<ref name="thebigone"/>
**** Underwater particles<ref name="thebigone"/>
**** [[Nether portal]] particles<ref name="thebigone"/>
**** [[End portal]] particles<ref name="thebigone"/>
**** [[Brewing stand]] particles<ref name="thebigone"/>
**** [[Monster spawner]] particles<ref name="thebigone"/>
**** [[Barrier]] particles<ref name="thebigone"/>
**** [[Armor stand]] breaking particles<ref name="thebigone"/>
**** Suspended gravity affected block particles<ref name="thebigone"/>
*** [[Entities]]
**** Primed [[TNT]] entities.<ref>{{bug|MC-125638}}</ref> However, indirectly ignited TNT from other explosions is still affected.<ref>{{bug|MC-167047}}</ref>
*** [[Block entities]]
**** The floating book above placed [[enchanting table]]s is now correctly rotated towards the direction of where a nearby player is at high coordinates.<ref>{{bug|MC-161888}}</ref> However, there are still issues with the book not opening early enough.<ref>{{bug|MC-167044}}</ref>
* The versions in which these issues first appeared, as well as other fixes, can be seen at [[Java Edition distance effects#History]].
; Textures
* The checkerboard background for unfilled sections on maps now has its own texture.
== Fixes ==
{{fixes
|fixedin=1.15 Pre-Release 4
|;old
|81970|Rotating armor stand has a shaking base plate.
|103800|Sometimes armor stands will not update their visual rotation.
|125638|Ignited TNT block has an entity offset at high coordinates.
|146194|Summon and rotation in same tick not working.
|155520|Repeaters do not update properly.
|157426|Command outputs which should be sorted do not get sorted.
|161888|Enchantment tables do not track the player correctly at high distances from the world origin.
|161991|Floating point precision error: Trailing particles from fishing lose precision at high coordinates.
|161993|Floating point precision error: Conduit particles are attracted to the conduit incorrectly at high distances.
|161994|Floating point precision error: Squid ink particles lose precision at high coordinates.
|161999|Floating point precision error: Particles emitted by end gateways gravitate to a point that loses precision at high coordinates.
|166047|Tamed wolves attack tamed parrots.
|;dev
|161394|Skeleton and wither skeleton skull's inside textures are invisible.
|164704|Rendering issue with honey and slime blocks when viewed from under glass.
|164712|Clouds are rendered in front of chunk borders.
|165704|Sky color no longer changes with biome.
|165977|Explosions combine block drops and drop them at the wrong location.
|166300|Pandas sometimes attack players trying to breed them.
|166667|Item frames are not rendered behind unexplored portions of maps.
|;prev
|166716|Tridents and shields are rendered too dark in the inventory.
|166800|Removing items from an armor stand with {{cd|DisabledSlots}} causes a visual bug.
|167000|Player model in inventory inverts lighting when some items are in hotbar.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|MPyIpLW-2CM}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.15-pre4]]
[[es:Java Edition 1.15 Pre-release 4]]
[[fr:Édition Java 1.15 Pre-release 4]]
[[ja:Java Edition 1.15 Pre-release 4]]
[[pt:Edição Java 1.15 Pre-release 4]]
[[ru:1.15 Pre-release 4 (Java Edition)]]
[[zh:Java版1.15-pre4]]

64
wiki_backup/1.15-pre5.txt Normal file
View file

@ -0,0 +1,64 @@
{{Infobox version
|title=Minecraft 1.15 Pre-release 5
|image=1.15-pre1.jpg
|image2=Java Edition 1.15 Pre-release 5.png
|edition=Java
|type=Pre-release
|date=December 5, 2019
|clienthash=4cfabb9bc131faf9d99417932d813a1148836fd7
|clientmap=5817890a00c611a896e1c935fb9d5f6c4c5c102e
|jsonfile=1.15-pre5
|jsonhash=1c17897411fe7cc38a00558b119fdce31c8f6235
|serverhash=d68ce004ce760b702e2f7e298a2a1ce7a7663c55
|servermap=ccfafbdb3d7639125d64c5e98f6e930f0b76c744
|parent=1.15
|prevparent=1.14.4
|prev=1.15 Pre-release 4
|next=1.15 Pre-release 6
|nextparent=1.15
}}<onlyinclude>
'''1.15 Pre-release 5''' (known as '''1.15-pre5''' in the [[launcher]]) is the fifth pre-release for [[Java Edition 1.15]], released on December 5, 2019,<ref>{{Mcnet|minecraft-1-15-pre-release-1?5|Minecraft 1.15 Pre-Release 5|December 5, 2019}}</ref> which fixes some bugs.
== Changes ==
=== General ===
; [[Resource pack]]s
* Increased the size limit for the client-side downloading of resource packs from 50&nbsp;MB to 100&nbsp;MB.
== Fixes ==
{{fixes
|fixedin=1.15 Pre-Release 5
|;old
|104818|When there is no value for an argument in {{mono|[[options.txt]]}}, it is not correctly parsed: {{cd|Skipping bad option: lastServer:}}.
|117449|{{mono|[[options.txt]]}} is read and written with the default OS encoding.
|148704|The "Server Light" section disappears then reappears.
|151173|Stream used to read the {{mono|[[options.txt]]}} file is never closed.
|153698|Jumping on a boat in water for a while causes you to accumulate fall damage.
|158870|Debug diagram does not allow stepping into profiler segments.
|166865|The game crashed while initializing the game, with error: {{cd|java.lang.IllegalArgumentException: MALFORMED}}.
|;dev
|164691|Debug pie graph is rendered incorrectly.
|;prev
|167074|Book in the enchantment table GUI is too dark.
|167080|Resource pack "move up" button is missing.
|;private
|166950|Torch duplication.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|m_tOpNsqWuI}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.15-pre5]]
[[es:Java Edition 1.15 Pre-release 5]]
[[fr:Édition Java 1.15 Pre-release 5]]
[[ja:Java Edition 1.15 Pre-release 5]]
[[pt:Edição Java 1.15 Pre-release 5]]
[[ru:1.15 Pre-release 5 (Java Edition)]]
[[zh:Java版1.15-pre5]]

51
wiki_backup/1.15-pre7.txt Normal file
View file

@ -0,0 +1,51 @@
{{Infobox version
|title=Minecraft 1.15 Pre-release 7
|image=1.15-pre1.jpg
|image2=Java Edition 1.15 Pre-release 7.png
|edition=Java
|type=Pre-release
|date=December 9, 2019
|clienthash=3d58943d119fab2404cedc465f45da09d4925f8e
|clientmap=b52d82f713bfa18764b35f26d8fff5dc3d9476cd
|jsonfile=1.15-pre7
|jsonhash=23d473f92308f3666b7a973c9ff242330f7a9271
|serverhash=c1f961491a8340a1809292b7189046896deaa338
|servermap=42894100f8b63029631b9bb54f9b233108f91650
|parent=1.15
|prevparent=1.14.4
|prev=1.15 Pre-release 6
|next=
|nextparent=1.15
}}<onlyinclude>
'''1.15 Pre-release 7''' (known as '''1.15-pre7''' in the [[launcher]]) is the seventh and final pre-release for [[Java Edition 1.15]], released on December 9, 2019,<ref>{{Mcnet|minecraft-1-15-pre-release-1?7|Minecraft 1.15 Pre-Release 7|December 9, 2019}}</ref> which fixes some debug screen related bugs.
== Fixes ==
{{fixes
|fixedin=1.15 Pre-release 7
|;dev
|167061|FPS/TPS graphs on {{key|F3}} screen are empty in spectator mode.
|167105|Debug screen renders behind hotbar.
|167106|Debug screen FPS/TPS graphs are not rendered correctly.
|167108|Lines on the debug screen are taller than before.
}}</onlyinclude>
== Video ==
Video made by [[slicedlime]]:
{{yt|PuwbNXEs7yw}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[cs:1.15 Pre-release 7]]
[[de:1.15-pre7]]
[[es:Java Edition 1.15 Pre-release 7]]
[[fr:Édition Java 1.15 Pre-release 7]]
[[ja:Java Edition 1.15 Pre-release 7]]
[[lzh:爪哇版一點一五之預七]]
[[pt:Edição Java 1.15 Pre-release 7]]
[[ru:1.15 Pre-release 7 (Java Edition)]]
[[zh:Java版1.15-pre7]]

View file

@ -0,0 +1,65 @@
{{Infobox version
|title=Minecraft 1.15.1 Pre-release 1
|image=1.15.1-pre1.jpg
|image2=Java Edition 1.15.1 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=December 12, 2019
|clienthash=70e27f84a178951b0df7c42c7b9313782cb9925e
|clientmap=cc77cb804c2cc0fa151b0745df4c5de8e64d1bb5
|jsonfile=1.15.1-pre1
|jsonhash=f5db8e3035a5fa26199718f325e79c762104e768
|serverhash=289a247dd42928880769398b049d3890513f2917
|servermap=47f8a03f5492223753f5f2b531d4938813903684
|parent=1.15.1
|prevparent=1.15
|next=
|nextparent=1.15.1
}}<onlyinclude>
'''1.15.1 Pre-release 1''' (known as '''1.15.1-pre1''' in the launcher) is the first and only pre-release for [[Java Edition 1.15.1]], released on December 12, 2019. This is the final pre-release of the year and decade overall.<ref>{{Mcnet|minecraft-1-15-1-pre-release-1|Minecraft 1.15.1 Pre-Release 1|December 12, 2019}}</ref>
== Changes ==
=== General ===
; Network handling
* Improved network handling of invalid [[biome]] IDs.
; Performance
* Optimized [[chunk]] rendering performance, especially for chunks with many different [[block]] states.
== Fixes ==
{{fixes
|fixedin=1.15.1 Pre-Release 1|prefix=
|;From released versions before 1.15
|135050|{{cd|NullPointerException}} while tesselating block model.
|;From 1.15
|167482|Corrupt chunk causes force upgrading a world to fail.
|167530|Anvils causing {{cd|java.lang.StackOverflowError}}.
|otherissuescount=2
}}
; Other
* Fixed an error that was spammed to the game's log files caused by custom [[monster spawner]]s spawning [[villager]]s.
* Fixed a crash that occurred in the [[Realms]] screen.</onlyinclude>
== Video ==
{{Slicedlime|dzkee1pIyV4}}<onlyinclude>
== Trivia ==
* 1.15.1-pre1 is the last pre-release to be released in [[Timeline of events|2019]] and the 2010s decade.</onlyinclude>
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[cs:1.15.1 Pre-release 1]]
[[de:1.15.1-pre1]]
[[es:Java Edition 1.15.1 Pre-release 1]]
[[fr:Édition Java 1.15.1 Pre-release 1]]
[[ja:Java Edition 1.15.1 Pre-release 1]]
[[lzh:爪哇版一點一五點一之預一]]
[[pt:Edição Java 1.15.1 Pre-release 1]]
[[ru:1.15.1 Pre-release 1 (Java Edition)]]
[[uk:1.15.1 Pre-release 1 (Java Edition)]]
[[zh:Java版1.15.1-pre1]]

140
wiki_backup/1.15.2-pre1.txt Normal file
View file

@ -0,0 +1,140 @@
{{Infobox version
|title=Minecraft 1.15.2 Pre-Release 1
|image=1.15.2-pre1.jpg
|image2=Java Edition 1.15.2 Pre-Release 1.png
|edition=Java
|type=Pre-release
|date=January 14, 2020
|clienthash=9f28455f9f9d09294e0ba19beb13dc26b39a9582
|jsonhash=acc96c6c1c2cdec3f864e4fc3beeb508c6c4d5a8 |jsonfile=1.15.2-pre1
|serverhash=5db50a719dc40d63aa95c6bdc5b302e425f673f2
|clientmap=6c81c6f2e6ff0c3a2795f5d336c63b0740a60a45
|servermap=f59bfc0ebb62bc7802af0567ad79592274c56943
|parent=1.15.2
|prevparent=1.15.1
|next=1.15.2 Pre-release 2
|nextparent=1.15.2
}}<onlyinclude>
'''1.15.2 Pre-Release 1''' (known as '''1.15.2-pre1''' in the [[Minecraft launcher|launcher]]) is the first pre-release for [[Java Edition 1.15.2]], released on January 14, 2020.<ref>{{Mcnet|minecraft-1-15-2-pre-release-1|Minecraft 1.15.2 Pre-Release 1|January 14, 2020}}</ref>
== Additions ==
=== Command format ===
; [[Gamerule]]s
* Added <code>doPatrolSpawning</code>.
** Controls the spawning of [[patrol]]s.
** Defaults to <code>true</code>.
* Added <code>doTraderSpawning</code>.
** Controls the spawning of [[wandering trader]]s.
** Defaults to <code>true</code>.
=== General ===
[[File:Multiplayer disclaimer.png|thumb|The disclaimer that appears when clicking on to multiplayer.]]
; [[Multiplayer]]
* Added a legal disclaimer when clicking the multiplayer button from the [[main menu]]: a new information screen informs the player that "Online play is not rated".
== Changes ==
=== Blocks ===
; [[Sapling]]s
* Oak and birch saplings grown within 2 blocks of a [[flower]] on the same Y-level have a 5% chance to have a [[bee nest]].
=== Mobs ===
; [[Bee]]s
* No longer anger when a nearby beehive or bee nest is destroyed using a [[Silk Touch]] tool.
; [[Horse]]s
* The texture of the horse armor slot in the horse [[GUI]] has been changed to reflect the current horse armor textures.
=== World generation ===
; [[Bee nest]]s
* Now have a 2% chance to spawn in [[flower forest]]s.
* Now have a 0.2% chance to spawn in [[birch forest]], [[birch forest hills]], [[forest]], [[tall birch forest]], [[tall birch hills]], and [[wooded hills]] biomes.
=== Gameplay ===
; [[Status effect]]s
* Effects are now stored when overwritten by an effect of a higher amplifier.
** A beacon effect only temporarily overwrites a lower amplifier potion until the beacon effect runs out.
=== General ===
; [[Block model]]s
* Added <code>gui_light</code> option in models to allow controlling light when rendering model as an item in a GUI.
** If set to <code>side</code>, the model is rendered like a block.
** If set to <code>front</code>, the model is shaded like a flat item.
; Game window
* Now displays the session type in the window title, such as [[singleplayer]] or [[multiplayer]].
** If applicable, the window title also specifies the type of multiplayer server the player is on, such as on a [[LAN]] or third-party [[server]].
** Example: "Minecraft 1.15.2 - Multiplayer (LAN)".
** Available types: "Singleplayer", "Multiplayer (LAN)", "Multiplayer (Realms)", and "Multiplayer (3rd-party)".
; [[Main menu]]
* If the game is modded, word "(Modded)" appears after the game version found on the main menu.
** Example: "Minecraft 1.15.2 (Modded)".
; Profiler report
* Now captures more information about performance problems.<ref name="slicedlime">{{ytl|WZVCxMQmdho|t=283|What's New in Minecraft 1.15.2 Pre-release 1?|Slicedlime|January 15, 2020}}</ref>
; Textures
* Removed a stray pixel from the bottom-right of the critical hit [[particle]] texture.
== Fixes ==
{{fixes
|fixedin=1.15.2 Pre-Release 1
|prefix=
|;From released versions before 1.15
|862|Spawn protection does not work for item frames, paintings and armor stands.
|1541|Beacon effect removes potion effect of the same type.
|51053|Furnace minecarts lose power after navigating corners.
|88038|Furnace minecarts go backwards when turning corners.
|106468|End crystal beam has incorrect texture on one side.
|150575|Concrete powder does not turn into concrete when letting it fall beside water.
|153987|Falling down ladders while wearing elytra.
|166319|B on "Open in browser" is lowercase in link confirmation GUI.
|167018|Misplaced pixel in critical hit particle texture.
|167079|Horse armor texture is off.
|167416|Distance from where a monster will stop a player from sleeping is off-center.
|;From 1.15
|165695|Hoppers harvesting honeycomb from bee hives and bee nests only pick up one honeycomb.
|166312|Loom UI pattern icons are too dark.
|166324|"Raw input" button has lowercase "i".
|166397|Entities become white from certain angles when affected by glowing and invisibility effects.
|166722|Some custom item models appear dark in the inventory.
|167201|Invisible glowing entities do not respect their team color.
|167219|Reloading a resource pack enough times will cause intense lag.
|167220|Items on marker armor stands no longer glow.
|167235|Distance from where you can enter a bed is off-center.
|167344|{{cd|com.mojang.blaze3d.platform.ClipboardManager}} leaks direct buffers.
|167444|{{cd|iron_golem_crackiness_*}} textures show up on invisible iron golems that are damaged.
|167709|Bees that ride a boat, minecart or other entities when entering their hive or nest cannot leave the hive or nest ever again.
|168091|Concrete powder does not convert into concrete when dropped into deep water.
|;From 1.15.1
|168230|End crystal beam is dark/desaturated.
|168467|Bees do not remember how many crops they have pollinated.
|168657|{{cd|TrueTypeGlyphProviderBuilder.create(ResourceManager)}} leaks buffer.
|169157|Breaking a hive with obstructed front makes bees vanish.
|otherissuescount=1
}}
; Other
* Fixed crashes and exploits.<ref name="slicedlime"/></onlyinclude>
== Video ==
{{slicedlime|WZVCxMQmdho}}<onlyinclude>
== Trivia ==
* This was the first version of 2020 and therefore the 2020s decade.
* Unlike the second pre-release, this version name has an uppercase "R" in-game, similar to [[Java Edition 1.15 Pre-Release 2|1.15-pre2]].</onlyinclude>
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.15.2-pre1]]
[[es:Java Edition 1.15.2 Pre-Release 1]]
[[fr:Édition Java 1.15.2 Pre-Release 1]]
[[ja:Java Edition 1.15.2 Pre-Release 1]]
[[pt:Edição Java 1.15.2 Pre-Release 1]]
[[ru:1.15.2 Pre-release 1 (Java Edition)]]
[[uk:1.15.2 Pre-Release 1 (Java Edition)]]
[[zh:Java版1.15.2-pre1]]

View file

@ -0,0 +1,53 @@
{{Infobox version
|title=Minecraft 1.15.2 Pre-release 2
|image=1.15.2-pre1.jpg
|image2=Java Edition 1.15.2 Pre-release 2.png
|edition=Java
|type=Pre-release
|date=January 16, 2020
|clienthash=a6b3fcea0178c47e518a3703adb8af793f526bce
|jsonhash=e65bded82fa03c9582867061cc57b03f2324e93b|jsonfile=1.15.2-pre2
|serverhash=f3eae938f3382ffeb8c3af150664d33864561110
|clientmap=bd9efb5f556f0e44f04adde7aeeba219421585c2
|servermap=59c55ae6c2a7c28c8ec449824d9194ff21dc7ff1
|parent=1.15.2
|prevparent=1.15.1
|prev=1.15.2 Pre-Release 1
|next=
|nextparent=1.15.2
}}<onlyinclude>
'''1.15.2 Pre-release 2''' (known as '''1.15.2-pre2''' in the [[Minecraft launcher|launcher]]) is the second and final pre-release for [[Java Edition 1.15.2]], released on January 16, 2020.<ref>{{Mcnet|minecraft-1-15-2-pre-release-1|Minecraft 1.15.2 Pre-Release 2|January 16, 2020}}</ref>
== Fixes ==
{{fixes
|fixedin=1.15.2 Pre-release 2|prefix=
|;dev
|169825|"Multiplayer (3rd-party)" shows in the window title when disconnecting from a singleplayer world.
|169839|Certain potion effects that override lower-level effects do not get removed after their duration ends.
|169840|Drinking a level 1 potion under a level 2 beacon and leaving the area results in the effect being lost.
|169848|Game crashes when trying to create a beehive from a planted tree.
|169886|Warning icons for outdated singleplayer worlds do not appear.
|169930|Simultaneously having 3 or more levels of the same potion effect only remembers one of the lower levels.
}}</onlyinclude>
== Video ==
{{slicedlime|kgYm7D93deA}}<onlyinclude>
== Trivia ==
* Unlike the first pre-release, this version name has a lowercase "r" in-game. In fact, all pre-releases until [[Java Edition 1.20.2 Pre-Release 3|1.20.2-pre3]] have a lowercase "r".</onlyinclude>
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.15.2-pre2]]
[[es:Java Edition 1.15.2 Pre-release 2]]
[[fr:Édition Java 1.15.2 Pre-release 2]]
[[ja:Java Edition 1.15.2 Pre-release 2]]
[[pt:Edição Java 1.15.2 Pre-release 2]]
[[ru:1.15.2 Pre-release 2 (Java Edition)]]
[[uk:1.15.2 Pre-release 2 (Java Edition)]]
[[zh:Java版1.15.2-pre2]]

273
wiki_backup/1.16-pre1.txt Normal file
View file

@ -0,0 +1,273 @@
{{Infobox version
|title=Minecraft 1.16 Pre-release 1
|image=20w17a.jpg
|image2=Java Edition 1.16 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=June 4, 2020
|clienthash=a0041360ae7579fb553d26aa5e8bdb869815e54a
|jsonhash=c2e0b128917175cc4fde452f2767d36d9b87ca12<!--v2: 7e229ca08e980b7f9c607de7d5c1dac6fbd837f7 --> |jsonfile=1.16-pre1
|serverhash=ce66f98cabc1038ceba3b715b7dad5f70e27f88a
|clientmap=744e4a4bb6613c6c1ba7493cf968278392fe8d01
|servermap=106642bcb88d66eb293eb737e7440842f851eb43
|parent=1.16
|prevparent=1.15.2
|prev=20w22a
|next=1.16 Pre-release 2
|nextparent=1.16
}}<onlyinclude>
'''1.16 Pre-release 1''' (known as '''1.16-pre1''' in the launcher) is the first pre-release for [[Java Edition 1.16]], released on June 4, 2020,<ref>{{Mcnet|minecraft-1-16-pre-release-1|Minecraft 1.16 Pre-Release 1|June 4, 2020}}</ref> which makes changes to floating-point precision and fixes several hand animations, among other things.
== Additions ==
=== Command format ===
; {{cmd|gamerule forgiveDeadPlayers}}
* Makes angered neutral mobs stop being angry when the targeted player dies nearby.
* Enabled by default.
; {{cmd|gamerule universalAnger}}
* Makes angered neutral mobs attack any nearby player, not just the player that angered them. Works best if <code>forgiveDeadPlayers</code> is disabled.
* Disabled by default.
=== Gameplay ===
; [[Recipe book]]
* Added recipe book unlocks for [[smithing table]]s, though they are non-functional.<!--No smithing table recipe book and no toast notification-->
=== General ===
[[File:Datapack Menu.png|thumb|The new datapack selection menu.]]
; [[Data pack]]s
* Added a new "Data Packs" button on the "Create World" screen.
** Allows the player to select data packs to be enabled in the world.
** Supports drag-and-drop.
* Dimensions and dimension types can now be added and changed by data packs.
* Smithing recipes can now be added and changed by data packs.
; Graphics
* Added new "''Fabulous!''" <!-- sic --> graphics option.
** Uses per-pixel blending layers for some transparent elements.
** Many of the fixes to transparent and translucent elements from [[20w22a]] had their performance improved and are now locked behind this graphics setting.
== Changes ==
=== Blocks ===
; [[Nether gold ore]]
* Now uses the "nether" color on maps.<ref>{{Bug|MC-186600}}</ref>
=== Items ===
; [[Water bucket]]s
* Can now be obtained in [[Creative]] mode when an empty bucket is used on water.
** If a bucket of water is in the players inventory already, no additional water buckets are added when an empty bucket is used on water.
** Whether this also applies to lava buckets is unknown.
=== Mobs ===
; [[Cow]]s
* Can now be milked in [[Creative]] mode.
; [[Mooshroom]]s
* Can now be milked in [[Creative]] mode.
* [[Mushroom stew]] and [[suspicious stew]] can now be obtained in creative mode.
; [[Snow golem]]s
* Are now damaged by splash and lingering [[water bottle]]s.
; [[Villager]]s
* When any villager is struck by lightning, the [[witch]] it is converted to no longer despawns, regardless of whether the villager had been traded with or not.
; [[Zombified piglin]]s
* No longer attack [[players]] who have not attacked a zombified piglin.
* Now stop being angry if the targeted [[player]] dies nearby.
=== Gameplay ===
; [[Advancement]]s
* The advancement file "Serious Dedication" has been renamed to <code>obtain_netherite_hoe.json</code>. This means progress in this advancement is not kept when upgrading to this version.
* The advancement "Two By Two" now requires [[donkey]]s and [[mule]]s.
** This advancement now checks the child resulting from breeding. <!--This means it's functional-->
* The advancement "Oh Shiny" now uses [[gold nugget]]s.
* The advancement "Hot Tourist Destinations" now rewards 500 [[experience]].
* The advancement "Cover Me in Debris" now rewards 100 experience.
* Changed the capitalization of "Who Is Cutting Onions?" to "Who is Cutting Onions?".
; [[Gamemode]] switcher
* Changed the text indicating to press {{key|F4}} to select the next gamemode from "F4 Next" to "[ F4 ]<!--Yes, there are spaces here. Do not remove.--> Next".{{verify|Last snapshot's text|type=change}}
; [[Subtitle]]s
* Changed the subtitle for stripping [[log]]s and [[wood]] from "Debarking log" to "Axe scrapes".
=== Command format ===
; {{cmd|locatebiome}}
* The biome ID in the error messages for an invalid biome or a valid biome that could not be found is now in quotes.
* Changed the error message for an invalid biome from "There is no biome named <''biome ID''>" to "There is no biome with type '<''biome ID''>'".
=== General ===
; [[Animation]]s
* Hand animations have been added for the following:
** Entering a [[boat]].<ref>{{bug|MC-164692}}</ref>
** Speeding up a baby [[strider]]'s aging.<ref>{{bug|MC-176225}}</ref>
** Shearing [[sheep]] (a regression from 1.15.2).<ref>{{bug|MC-178567}}</ref>
** Feeding a brown [[mooshroom]].<ref>{{bug|MC-178618}}</ref>
** Using a spawn egg on a mob to spawn a baby variant, if there wouldn't also be a block within reach through said mob.<ref>{{bug|MC-180922}}</ref>
* Hand animations for the following have been removed:
** Targeting a block through a mob then using a [[spawn egg]].<ref>{{bug|MC-165669}}</ref>
** Attempting to switch a [[minecart with furnace]]'s direction when it isn't on a rail.<ref>{{bug|MC-165734}}</ref>
** Using a [[dye]] on a [[sheep]] which already has that color.<ref>{{bug|MC-166524}}</ref>
; [[Data pack]]s
* Game now detects critical data pack issues, like missing required tags that prevent the world from being loaded.
; [[Java Edition distance effects|Distance effects]]
[[File:Rain precision error.png|thumb|right|An example of the rain and lava smoke particles at 20 million blocks prior to 1.16-pre1. Note the clustering.]]
* Certain game mechanics, mainly a handful of different particles, have been modified to use 64-bit ([[wikipedia:Double-precision floating-point format|double-precision]]) precision where they previously used 32-bit ([[wikipedia:Single-precision floating-point format|single-precision]]).
* As a result, the effects appear in the correct places even if the player is far away from the spawn point (with effects being the most extreme when over 16,777,216 blocks away).
* The following precision loss errors are fixed:
** [[Lava]] embers and popping sounds should now originate from the correct positions.<ref>{{bug|MC-167046}}</ref>
** [[Campfire]] embers should now be generated at the correct position.<ref>{{bug|MC-167042}}</ref>
** Particles from [[rain]] hitting the top of blocks should now appear at the correct position.<ref>{{bug|MC-1735}}</ref>
** Smoke emitted by lava during rain should appear at the correct position.<ref>{{bug|MC-171037}}</ref>
** Smoke emitted by campfires during rain should appear at the correct position.<ref>{{bug|MC-185480}}</ref>
** Particles from [[redstone dust]] should now appear at the correct position.<ref>{{bug|MC-182748}}</ref>
** Particles from [[redstone repeater]]s should now appear at the correct position.<ref>{{bug|MC-167971}}</ref>
** Particles from nether biomes should now appear at the correct position.<ref>{{bug|MC-170872}}</ref>
** Particles from adding [[eyes of ender]] to [[end portal frame]]s should now appear at the correct position.<ref>{{bug|MC-161969}}</ref>
** Particles dripping from [[leaves]] during rain no longer snap to block corners and are correctly randomized across the underside of the block.<ref>{{bug|MC-167091}}</ref>
** The book of the [[enchanting table]] now opens properly at high distances; previously there were cases where the player could be pressed right up to the block, yet the book would not acknowledge them.<ref>{{bug|MC-167044}}</ref>
** [[TNT]] ignited by other explosions now appears at the right locations at high distances.<ref>{{bug|MC-167047}}</ref>
** [[Detector rail]]s at high distances were not always being correctly powered and depowered, which has been fixed.<ref>{{bug|MC-183174}}</ref>
** Mob pathfinding caused mobs to randomly swivel at high distances.<ref>{{bug|MC-177723}}</ref>
** Mob spawning would also break down, spawning mobs at block corners and sometimes inside of other blocks.<ref>{{bug|MC-167103}}</ref>
** Generation of [[minecarts with chests]] in [[mineshaft]]s now spawns them at the intended positions.<ref>{{bug|MC-167421}}</ref>
; [[Tag]]s
* Removed sweet berry bushes from the <code>prevent_mob_spawning_inside</code> block tag.
* The <code>piglin_loved</code> item tag now uses the <code>gold_ores</code> item tag instead of listening gold ore and nether gold ore individually.
* Added [[gold nugget]]s to the <code>piglin_loved</code> item tag.
== Fixes ==
{{fixes|fixedin=1.16 Pre-release 1
|;old
|4520|Aggressive neutral mobs become neutral when the world is reloaded.
|9856|You cannot pick up buckets of water/lava in creative mode.
|36322|Unable to milk cows in Creative.
|63714|Zombified piglins get angry when hit in Creative mode.
|64623|Lightning bolts cannot be targeted by selectors.
|69032|When a mob hits a zombified piglin, and that mob dies, the zombified piglins attack the player.
|90969|Cannot get mushroom stew from mooshrooms/milk from cows in creative mode.
|100258|Holding Right-Click on an untamed horse causes an obnoxiously loud sound.
|106968|Snow golems arent damaged by splash or lingering water bottles.
|127004|Waterlogged blocks cause z-fighting when looking at them from a distance.
|133692|When the player is in lava, the orange appears darker/completely black at Y{{=}}0 and below.
|138675|Wither skulls inflict the wither effect on players in creative mode.
|138713|“Two by Two” advancement does not require donkeys or mules.
|158906|After sleeping in a bed, players arent positioned in the center of a block.
|159500|Hostile mobs attacking bees also cause the bees to attack players.
|161969|Casting issue: Adding ender eyes to end portal frames at high distances causes particles to lose precision
|163950|Ice bordering water causes z-fighting issues from a distance.
|164692|Entering a boat does not play the hand animation
|165669|Hand animation is playing when the player is aiming at a block through the mob and use the spawn egg.
|165734|Minecarts with furnace still display a hand animation with incompatible items when not on a rail
|166188|Bees still hitting player after death.
|166524|Trying to dye a sheep with the same color as sheep displays hand animation.
|167042|Casting issue: Campfire embers are generated at a point that loses precision at high coordinates
|167044|Casting issue: Enchanting table book does not open for the player at high distances in some cases
|167046|Casting issue: Lava ember particles and lava popping sounds lose precision on creation at high coordinates
|167047|Casting issue: TNT blocks ignited by other explosions lose precision at high coordinates
|167091|Casting issue: Water particles dripping from leaves lose precision at high coordinates
|167103|Casting issue: Mob spawning loses precision at high coordinates
|167195|Bees anger towards players in survival when killed in one hit.
|167421|Casting issue: Minecarts with chests are generated in the wrong positions in abandoned mineshafts at high coordinates
|167971|Casting issue: Particles emitted by redstone repeaters lose precision at high coordinates
|168675|Settings that update after closing the video settings menu dont if you change the fullscreen setting.
|172531|Small mobs get stuck in fence corners.
|176640|Players can set their spawn point inside dangerous blocks.
|178570|When blocking a wither skull with a shield, the player still receives the wither effect.
|;dev
|170867|Incorrect subtitles when using axe to strip stem blocks
|170872|Casting issue: Nether biome particles suffer from precision loss
|170944|/locatebiome messages do not fit for all biome names.
|171035|Casting issue: Particles from falling rain lose precision at high coordinates
|171037|Casting issue: Smoke produced by lava during rain loses precision at high coordinates
|171663|Right-clicking on unemployed villagers sometimes cause hand animation to stop after a villager has a profession.
|171683|Crimson and warped doors cant have transparent textures.
|172259|Baby hoglin/zoglin have their head slightly above their neck, it seems that their head is partly floating.
|172610|When not aiming at a block through a ridable mob while using a spawn egg on it, the player starts riding the mob and a baby mob is spawned.
|174195|Piglins don't become persistent if given gold nuggets.
|174815|Piglins dont automatically attack withers.
|175028|Sometimes hoglins dont avoid warped fungus.
|175215|Respawn anchors destroy blocks when detonated underwater.
|175409|Soul speed “effect” stays when a player levitates/flies off of soul sand or soul soil.
|175476|Respawn anchor doesnt cull block faces.
|175911|Soul speed lasts after leaving soul blocks.
|176041|Using a spawn egg on a strider while aiming at lava spawns both a baby and an adult strider.
|176188|Striders are not damaged by splash or lingering water bottles.
|176225|Accelerating a baby striders growth does not display hand animation.
|176470|Respawning in the nether does not de-aggro zombified piglins.
|176637|Closing game during Mojang load screen causes NullPointerException.
|177723|Casting Issue: Mobs occasionally just spin around when coordinate numbers are very high
|178567|Shearing sheep does not display hand animation again.
|178618|Feeding a flower to a brown mooshroom does not perform hand animation.
|178961|/loot … fish … command no longer has any functionality.
|179561|Retreating baby hoglins sometimes wont pathfind to the opposite direction of the player.
|180111|Hoglins angered for reasons other than being attacked by the player ignore placed repellents.
|180922|Right clicking a mob with a spawn egg to spawn the baby variant doesnt play the hand swing animation when not aiming at a block through the mob.
|182308|Chicken jockeys cannot despawn.
|182748|Casting issue: Redstone dust particles are generated at the wrong positions at high coordinates
|182883|Parity issue: Baby hoglins dont follow adult hoglins.
|183174|Casting Issue: Certain detector rails unable to be powered when coordinate numbers are very high
|183766|“Who Is Cutting Onions?” Improperly capitalized.
|183767|Incorrect filename for “Serious Dedication” advancement in vanilla data pack.
|183792|piglin_loved item tag has unnecessary items.
|183821|“Game Mode Switcher” bottom hint text isnt centered.
|183825|New nether challenges dont grant experience points.
|184679|Using custom world generation, temperature is written wrong.
|184947|Carriage return symbol can be seen when importing or exporting world generation settings to or from certain worlds.
|185095|“thrown_item_picked_up_by_entity” advancement trigger does not work for players.
|185377|Bone mealing kelp creates a large field of particles, rather than only within the kelps block space
|185480|Casting issue: Smoke particles emitted by campfires during rain form at the wrong positions at high coordinates
|;prev
|186062|Warning “Could not find uniform named InSize in the specified shader program.” when loading resources.
|186064|Clouds render in front of everything for some users.
|186067|Some structures loot chests do not contain any items.
|186071|Clouds are visible and dont render correctly when they are turned off.
|186074|Particles render in the wrong order with transparent blocks when using certain graphics cards.
|186075|GPU usage in latest snapshot significantly higher than before, causing lag or crash for some users.
|186079|Superflat world has dark sky.
|186080|Entities, block entities, and items are rendered black on some graphics cards.
|186088|Block hitboxes once again cause semi-transparent blocks not to render behind them
|186089|Functions load before entity tags do, causing loading errors.
|186101|Some commands in functions cause a NullPointerException.
|186108|Enchantment glint does not render on dropped/thrown items.
|186109|Players can use multiplayer commands on a singleplayer world.
|186111|Debug mode is accessible in any gamemode.
|186124|Lightning bolt doesnt render.
|186149|"Debug Mode" world causes error on world list.
|186204|Items render in front of other entities, transparent blocks, and blocks with special renderers.
|186253|Held translucent blocks make the water, clouds, particles, and placed translucent blocks behind them invisible in third person mode.
|186274|Purple light from ender dragons death doesnt appear.
|186284|Players point of view is upside down in 20w22a.
|186314|Villagers become fixated on potential job site.
|186335|Bees age calculation inside hive/nest is broken.
|186455|Persistent villagers without experience can despawn after converting to a witch.
|186464|Enabled data packs still show up in the “/datapack enable” list.
|186478|Tag minecraft:tick doesnt work when joining a world.
|186480|Inner parts of slime blocks and honey blocks disappear again while the block is moved by a piston.
|186600|Nether gold ore is gray on a map.
|186696|Totem of Undying causes red or blue tint in the screen when in F5 mode.}}</onlyinclude>
== Trivia ==
* This pre-release, being the first for 1.16, was released exactly 2 years after the release of [[Java Edition 1.13-pre1|1.13-pre1]], also the first for that version.
== Video ==
{{slicedlime|TKHXkV4ivq4}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16-pre1]]
[[es:Java Edition 1.16 Pre-release 1]]
[[fr:Édition Java 1.16 Pre-release 1]]
[[ja:Java Edition 1.16 Pre-release 1]]
[[pt:Edição Java 1.16 Pre-release 1]]
[[ru:1.16 Pre-release 1 (Java Edition)]]
[[zh:Java版1.16-pre1]]

80
wiki_backup/1.16-pre4.txt Normal file
View file

@ -0,0 +1,80 @@
{{Infobox version
|title=Minecraft 1.16 Pre-release 4
|image=1.16 Pre-release 3.jpg
|image2=Java Edition 1.16 Pre-release 4.png
|edition=Java
|type=Pre-release
|date=June 11, 2020
|clienthash=67bd747f23f658a442766588d044074c65c41332
|jsonhash=5e351676d775a0c366c76c6cef5e61bec450b225 |jsonfile=1.16-pre4
|serverhash=018cdde89f8ff3831ce27c6c8dbf6831e99e0e75
|clientmap=16f51796f36dffb414086b46ac9dbb1d3e885d02
|servermap=78ec69bde1ba4a229b2aafe1bc5c749d9cfee963
|parent=1.16
|prevparent=1.15.2
|prev=1.16 Pre-release 3
|next=1.16 Pre-release 5
|nextparent=1.16
}}<onlyinclude>
'''1.16 Pre-release 4''' (known as '''1.16-pre4''' in the [[launcher]]) is the fourth pre-release for [[Java Edition 1.16]], released on June 11, 2020,<ref>{{Mcnet|minecraft-1-16-pre-release-3|Minecraft 1.16 Pre-Release 4|June 11, 2020}}</ref> which tweaks some spawn rates and fixes bugs.
== Changes ==
=== Mobs ===
; [[Skeleton]]s
* Increased skeleton's spawning weight in soul sand valleys from 2 to 10.
=== Command format ===
; {{cmd|datapack}}
* Changed the chat output when enabling/disabling a data pack from "Enabled/Disabled data pack <datapack>" to "Enabling/Disabling data pack <datapack>".<ref>{{Bug|MC-186468}}</ref>
=== Gameplay ===
; [[Spawning]]
* Tweaked hostile spawn rates in [[warped forest]]s and [[soul sand valley]]s.
== Fixes ==
{{fixes|fixedin=1.16 Pre-release 4|showdesc=1
|;old
|88491|Projectiles hit the player, snowman and witch who threw them at certain angles or close to the entities.
|118217|Custom text color for advancement title in hover text is overwritten by advancement type default one.
|136085|Blocks attached to multi-block blocks are deleted when breaking the other half of the block.
|;dev
|171257|Using a fire charge on invalid place attempts to make fire.
|175588|Zombified baby piglins do not have high pitched idle sounds.
|177463|Crash report "Connection:" field contains unuseful value (Object.toString()).
|179851|Attribute {{cd|generic.movement_speed}} does not work in {{cmd|attribute}}.
|180967|Advancement description JSON can ignore the first specified color.
|181498|Using a fire charge on top of fire briefly creates another fire on top of it.
|181556|Baby zombified piglins float while riding striders.
|181576|Worlds which are already open in another instance of ''Minecraft'' can be selected with arrow keys and tab.
|184613|End stone generates in "Floating Islands" setting.
|184644|Cave buffet generator generates with netherrack, even if using a non-nether biome.
|186468|Although reload failed, the game will also tell you "Disabled data pack [XXX]".
|187419|Hand animation is not played when feeding horses or donkeys with golden carrots.
|187550|{{cmd|datapack enable}} shows success message after the command is run rather than after a data pack is enabled.
|188352|Creative mode cow milking/mushroom stewing inconsistent with picking up placed fluids.
|188463|Transparent dropped items render in wrong order when behind entities when graphics setting is set to Fabulous.
|;prev
|188451|Game crashes when dispensing a shulker box from a dispenser {{cd|java.lang.NullPointerException: Exception while ticking}}.
|188467|"Sound Director" in credits is too light compared to the rest of the text, and is missing an "S".
|188517|Cannot create multiple empty tags in a datapack.
|188519|Clouds render on top of blocks.
|188528|Particles render on top of stained glass.
}}</onlyinclude>
== Video ==
{{slicedlime|yWTy08_yNag}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16-pre4]]
[[es:Java Edition 1.16 Pre-release 4]]
[[fr:Édition Java 1.16 Pre-release 4]]
[[ja:Java Edition 1.16 Pre-release 4]]
[[pt:Edição Java 1.16 Pre-release 4]]
[[ru:1.16 Pre-release 4 (Java Edition)]]
[[zh:Java版1.16-pre4]]

89
wiki_backup/1.16-pre7.txt Normal file
View file

@ -0,0 +1,89 @@
{{Infobox version
|title=Minecraft 1.16 Pre-release 7
|image=1.16 Pre-release 6.jpg
|image2=Java Edition 1.16 Pre-release 7.png
|edition=Java
|type=Pre-release
|date=June 16, 2020
|clienthash=62473fe623906a01b2f7cf4f7c1396ab23697e5f
|jsonhash=02155e7476220645b0107579bc52c8c1793938e1 |jsonfile=1.16-pre7
|serverhash=577f7287642309a2a32e80be395329118dfddb3f
|clientmap=94e705bf660947337173cea6cafe8a614e52f227
|servermap=5440a2df052cc134b8ef8ba8357dd254222c1f94
|parent=1.16
|prevparent=1.15.2
|prev=1.16 Pre-release 6
|next=1.16 Pre-release 8
|nextparent=1.16
}}<onlyinclude>
'''1.16 Pre-release 7''' (known as '''1.16-pre7''' in the [[launcher]]) is the seventh pre-release for [[Java Edition 1.16]], released on June 16, 2020,<ref>{{Mcnet|minecraft-1-16-pre-release-6|Minecraft 1.16 Pre-Release 7|June 16, 2020}}</ref> which fixes some bugs.
== Additions ==
=== General ===
; [[Font]]
* Many new characters have been added.
** These are the added characters: {{cd|´¨ᴀʙᴄᴅᴇꜰɢʜᴊᴋʟᴍɴᴏᴘꞯʀꜱᴛᴜᴠᴡʏᴢ§ɱɳɲʈɖɡʡɕʑɸʝʢɻʁɦʋɰɬɮʘǀǃǂǁɓɗᶑʄɠʛɧɫɨʉʊɘɵɤɜɞɑɒɚɝƁƉƑƩƲႠႡႢႣႤႥႦႧႨႩႪႫႬႭႮႯႰႱႲႳႴႵႶႷႸႹႺႻႼႽႾႿჀჁჂჃჄჅჇჍაბგდევზთიკლმნოპჟრსტუფქღყშჩცძწჭხჯჰჱჲჳჴჵჶჷჸჹჺ჻ჼჽჾჿתּשׂפֿפּכּײַיִוֹוּבֿבּꜧꜦɺⱱʠʗʖɭɷɿʅʆʓʚ₪₾֊ⴀⴁⴂⴃⴄⴅⴆⴡⴇⴈⴉⴊⴋⴌⴢⴍⴎⴏⴐⴑⴒⴣⴓⴔⴕⴖⴗⴘⴙⴚⴛⴜⴝⴞⴤⴟⴠⴥ⅛⅜⅝⅞⅓⅔✉☂☔☄⛄☃⌛⌚⚐✎❣♤♧♡♢⛈☰☱☳☴☶☷↔⇒⇏⇔⇵∀∃∄∉∋∌⊂⊃⊄⊅∧∨⊻⊼⊽∥≢⋆∑⊤⊥⊢⊨≔∁∴∵∛∜∂⋃⊆⊇□△▷▽◁◆◇○◎☆★✘₀₁₂₃₄₅₆₇₈₉₊₋₌₍₎∫∮∝⌀⌂⌘〒ɼƄƅẟȽƚƛȠƞƟƧƨƪƸƹƻƼƽƾȡȴȵȶȺⱥȻȼɆɇȾⱦɁɂɃɄɈɉɊɋɌɍɎɏẜẝỼỽỾỿꞨꞩ𐌰𐌱𐌲𐌳𐌴𐌵𐌶𐌷𐌸𐌹𐌺𐌻𐌼𐌽𐌾𐌿𐍀𐍁𐍂𐍃𐍄𐍅𐍆𐍇𐍈𐍉𐍊🌧🔥🌊}}
** Includes several remaining Latin and Armenian-language ligatures<ref>{{bug|MC-156442}}</ref> and the Georgian alphabet.
== Changes ==
=== Mobs ===
; [[Strider]]s
* Each leg can now be textured individually.
* The textures of the legs on the model are now mirrored.
=== World generation ===
; [[Soul sand valley]]s
* Skeletons now have a weight of 20 instead of 10.
* The biome has a total spawning energy of 0.7 instead of 1.0.
== Fixes ==
{{Fixes|fixedin=1.16 Pre-release 7
|;old
|30814|Chat text is too close together.
|60933|Creative: player is sporadically and momentarily lit on fire.
|144107|Miscalculation of camera position in windowed mode on Linux.
|156442|Some Latin and Armenian ligatures are not included in the Minecraft font.
|160704|Acute accent is rendered too small.
|167432|{{key|Ctrl}} + middle-click on lectern does not copy written book.
|169319|Letters ä, ë, ï, ö, ü, ÿ are included in the default font, but the alone umlaut/diaeresis (¨) is not.
|;dev
|176447|Strider left and right legs use the same texture.
|180283|Inconsistent font json file structure.
|180467|The world border is no longer fully solid.
|183673|Skeletons do not spawn frequently in soul sand valley.
|185126|Unable to jump one block high from flowing lava that has level 3 or lower.
|186228|Zombified piglins' sleeve layers are not held upwards like their arms.
|188552|Zombified piglins drop less XP than before.
|188838|Heads and skulls on a wall cause z-fighting.
|189824|Overworld/general gameplay music can play in the nether in creative mode.
|189846|Turtle eggs hatching broken, game checking for sand one block too deep.
|;prev
|189856|Unable to set nether portal block with {{cmd|setblock}} or {{cmd|fill}}.
|189867|Cannot use {{cmd|setblock}} and {{cmd|fill}} to place blocks in positions they cannot normally be in.
|189868|Player gets set on fire and extinguished continuously when standing in fire in creative mode.
|189895|Redstone in jungle temple/pyramid no longer connects to blocks and redstone components properly.
|189903|Turtle home beach detection looking one block too deep.
|189905|The player can get stuck inside of the world border.
|189968|Mobs suffocate when touching the world border.
|189971|Clicking the "Take me back" button causes translucent blocks to stop rendering.
|190010|The game crashes when using a mouse button to swap item in hands while inside of an inventory but not hovering over a slot.
}}</onlyinclude>
== Video ==
{{slicedlime|vsF2wPYnrtA}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16-pre7]]
[[es:Java Edition 1.16 Pre-release 7]]
[[fr:Édition Java 1.16 Pre-release 7]]
[[ja:Java Edition 1.16 Pre-release 7]]
[[ko:Java Edition 1.16 프리릴리스 7]]
[[pt:Edição Java 1.16 Pre-release 7]]
[[ru:1.16 Pre-release 7 (Java Edition)]]
[[zh:Java版1.16-pre7]]

74
wiki_backup/1.16-pre8.txt Normal file
View file

@ -0,0 +1,74 @@
{{Infobox version
|title=Minecraft 1.16 Pre-release 8
|image=1.16 Pre-release 6.jpg
|image2=Java Edition 1.16 Pre-release 8.png
|edition=Java
|type=Pre-release
|date=June 17, 2020
|clienthash=23b14c93185398af577353c47af04248991b72b4
|jsonhash=ce8e10c877e56be5d3ea163cb6a47e87c30a0a59 |jsonfile=1.16-pre8
|serverhash=d6a747371b200216653be9b4140cd2862eddbb0e
|clientmap=a8c539fd4bef5f07f5feec4c18a4b870c167a1a0
|servermap=82bf7b8ffb8e9ead5fe03e4324ba542a1e5ecc7c
|parent=1.16
|prevparent=1.15.2
|prev=1.16 Pre-release 7
|next=1.16 Release Candidate 1
|nextparent=1.16
}}<onlyinclude>
'''1.16 Pre-release 8''' (known as '''1.16-pre8''' in the [[launcher]]) is the eighth and final pre-release for [[Java Edition 1.16]], released on June 17, 2020,<ref>{{Mcnet|minecraft-1-16-pre-release-6|Minecraft 1.16 Pre-Release 8|June 17, 2020}}</ref> which fixes some bugs.
== Fixes ==
{{Fixes|fixedin=1.16 Pre-release 8
|;old
|77176|When retracted by sticky piston, activated detector rails do not update their orientation.
|77820|Ender dragon death light glitch/bug.
|82995|Blocking with two shields in 3rd person mode.
|114030|Structure blocks take and apply NBT data of entities and tile entities directly instead of a copy when loading and saving structures.
|127971|Trying to throw a trident while having a shield or bow equipped will make the trident appear backwards in your hand.
|147625|Ender dragon tries to regenerate from destroyed ender crystals.
|149799|When a crossbow is loaded and in the offhand, you do not see it anymore if you carry an item in the main hand.
|153483|When swapping tridents between hands the trident being held does not swap visually, it just flips backwards.
|159820|3rd person reverse trident bug.
|177873|Trident and shield holding model is activated as you use an item with a right click function in another hand.
|178572|Using a shield triggers model for other poses if respective item is held in the other hand.
|179309|Trident animates backwards while eating.
|;dev
|185282|Debug worlds start generating normal Overworld terrain after reentering world.
|187953|Adding items to {{cd|#minecraft:small_flowers}} item tag and feeding them to brown mooshrooms crashes the game.
|188859|Incorrect throwing animation for tridents.
|188746|Not selecting a biome for the Floating Islands world type generates an empty world.
|189007|When entering or leaving swimming mode both arms now move in parallel instead of symmetrically.
|189782|Large ferns only drop one small fern when harvested.
|189858|Leads can disappear when transporting a mob through a Nether portal.
|189937|Saddled pigs accumulate speed when ridden in water.
|189970|Selected worlds using keyboard nav does not enable world-specific options such as Play, Edit, Delete, and Re-Create.
|189973|{{cd|ClassCastException}} when bee with passenger flies through village at night.
|190005|Piglins can spawn with gear with too many enchantments, including multiple enchantments of the same type.
|190036|Passive mobs do not spawn in the Floating Islands world type.
|;prev
|190124|Grass decays too quickly when covered in water.
|190166|Game crashes when burning a tree in a custom dimension: {{cd|java.lang.NullPointerException: Exception while ticking}}.
}}</onlyinclude>
== Video ==
{{slicedlime|bLpiSNdkIZc}}
== Trivia ==
* In the [[launcher]], the introduction of this versions patch note is “Squish, squash is the sound bugs make when you squish them. Or was it squash them? Anyway, heres pre-release 8 with more bug fixes.”
* This is the second time to feature an eighth pre-release, after [[Java Edition 1.13-pre8|1.13-pre8]].
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16-pre8]]
[[es:Java Edition 1.16 Pre-release 8]]
[[fr:Édition Java 1.16 Pre-release 8]]
[[ja:Java Edition 1.16 Pre-release 8]]
[[pt:Edição Java 1.16 Pre-release 8]]
[[ru:1.16 Pre-release 8 (Java Edition)]]
[[zh:Java版1.16-pre8]]

123
wiki_backup/1.16-rc1.txt Normal file
View file

@ -0,0 +1,123 @@
{{Infobox version
|title=Minecraft 1.16 Release Candidate 1
|image=1.16 Release Candidate 1.jpg
|image2=Java Edition 1.16 Release Candidate 1.png
|edition=Java
|type=Release candidate
|date=June 18, 2020
|clienthash=a056316b66aea50c0555d5f438cf839b6cdde000
|jsonhash=9d88620e42c57242811c588681df9eddca06aab0 |jsonfile=1.16-rc1
|serverhash=7213e5ba8fe8d352141cf3dde907c26c43480092
|clientmap=c68f223b19fd1be84ba2f7b55546c7cbf64e5078
|servermap=c3d6c25f90fc1cfa535925d2fe6ae0722c3fed58
|parent=1.16
|prevparent=1.15.2
|prev=1.16 Pre-release 8
|nextparent=1.16
|next=
}}<onlyinclude>
'''1.16 Release Candidate 1''' (known as '''1.16-rc1''' in the [[launcher]]) is the first and only release candidate for [[Java Edition 1.16]], released on June 18, 2020,<ref>{{Mcnet|minecraft-1-16-release-candidate|Minecraft 1.16 Release Candidate 1|June 18, 2020}}</ref> which modifies [[splash]] texts and fixes bugs.
== Additions ==
=== General ===
; [[Splashes]]
* The COVID-19 pandemic set of splash texts have been added to the normal set of splashes.
* Added new splashes:
** This parrot is no more! It has ceased to be!
** Honey, I grew the bees!
** Find your claw!
** Everybody do the Leif!
** <3 Max & 99 & Ducky!
** Bushy eyebrows!
** Edit is a name!
** From free range developers!
** Music by [[Lena Raine]]!
** Aww man!
** #minecraftfarms
** And my pickaxe!
** Envision! Create! Share!
** [[Options|Fabulous graphics]]!
** Also try [[Minecraft Dungeons]]!
** Vanilla!
** May contain traces of citrus!
** [[Zoglin]]!?
== Changes ==
=== World generation ===
; [[The Nether]]
* Fixed issues with the Nether surface generation, which caused issues like floating [[lava]] and [[crimson forest]]s without [[nylium]].{{checkthecode|What changes were made? Code digging required.}}
; Optimizing worlds
* The progress bar when optimizing worlds are now color-coded according to the type of [[dimension]], and the ratio is calculated according to the number of chunks to optimize for each.
** Green for the [[Overworld]], brown for [[the Nether]], and light orange for [[the End]].
** This applies to [[custom dimension]]s as well.
=== General ===
; [[Splashes]]
* The COVID-19 pandemic set of splashes no longer overwrite the normal ones.
* Removed some splashes:
** Undocumented!
** Down with O.P.P.!
** Lewd with two dudes with food!
** Switches and ores!
** Huge tracts of land!
** Totally forgot about Dre!
** Popping tags!
** Getting ready to show!
** Getting ready to know!
** Getting ready to drop!
** Getting ready to shock!
** Getting ready to freak!
** Getting ready to speak!
== Fixes ==
{{Fixes|fixedin=1.16 Release Candidate 1
|;old
|59540|Creating superflat world without layers causes to get "Classic Flat".
|86197|Shield blocking happens even while eating.
|88901|Blocking with Shield, and getting hit causes visual bug.
|109121|2×2 jungle and spruce trees do not grow from the lowest layer.
|117312|Hover and click events are at wrong position for right-to-left languages.
|135333|Open fence gates still block players in water.
|150543|Using a stonecutter can sometimes crash the game in certain circumstances.
|152934|Water and lava disappear when dispensed through a dispenser at build limit.
|164224|Non updated lava layers that rarely generate in Nether wastes, crimson forests, and warped forests.
|164569|Random "Block Broken" in jungle.
|166921|Incorrect bow animation when eating.
|166959|Cannot trade with villager after clicking on them while holding a written book.
|174790|Mob on turtle eggs causes the game to crash.
|175634|Fishing line disconnects while drinking.
|;dev
|181833|Crash on world startup after playing world in 20w18a.
|187423|Ender pearls sometimes won't work with end gateways.
}}</onlyinclude>
== Video ==
{{slicedlime|fl_q7KUCMIg}}
== Trivia ==
* This is the first [[release candidate]] since [[Java Edition RC2|RC2]] for [[Java Edition 1.0.0|1.0.0]].
** The time between the last release candidate ([[RC2]]) and this one is 8 years, 7 months and 5 days (3140 days).
* The splash "This parrot is no more! It has ceased to be!" is a reference to ''Monty Python's Flying Circus'' [[wikipedia:Dead Parrot sketch|"Dead Parrot Sketch"]].
* The splash "Honey, I grew the bees!" is a reference to the 1989 film [[wikipedia:Honey, I Shrunk the Kids|''Honey, I Shrunk the Kids'']] as well as the size of the [[bee]] mob added in [[Java Edition 1.15|1.15]].
* The splash "From free range developers!" is a reference to the "From free-range hens" phrase seen on egg boxes.
* The splash "Music by Lena Raine!" is a reference to the new music tracks added in 1.16, made by [[Lena Raine]].
* The splash "Aww man!" is a reference to the "Creeper, aww man" meme, originating from [[CaptainSparklez]]' Minecraft parody song, ''Revenge''.<ref>{{ytl|cPJUBQd-PNM|"Revenge" - A Minecraft Parody of Usher's DJ Got Us Fallin' In Love (Music Video)|CaptainSparklez|August 19, 2011}}</ref>
* The splash "#minecraftfarms" is a hashtag [[Felix Jones]] wanted to get trending.<ref>{{tweet|Xilefian|1270028640340914178|#minecraftfarms|8 Jun 2020}}; {{tweet|Xilefian|1270032089342259202|just trying to get the hashtag trending|8 Jun 2020}}.</ref>
* 1.16 Release Candidate 1 was released exactly 10 years after [[Java Edition Infdev 20100618|Infdev 20100618]].
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16-rc1]]
[[es:Java Edition 1.16 Release Candidate 1]]
[[fr:Édition Java 1.16 Release Candidate 1]]
[[ja:Java Edition 1.16 Release Candidate 1]]
[[pt:Edição Java 1.16 Release Candidate 1]]
[[ru:1.16 Release Candidate 1 (Java Edition)]]
[[zh:Java版1.16-rc1]]

187
wiki_backup/1.16.2-pre1.txt Normal file
View file

@ -0,0 +1,187 @@
{{Infobox version
|title=Minecraft 1.16.2 Pre-release 1
|image=1.16.2-pre1.jpg
|image2=Java Edition 1.16.2 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=July 29, 2020
|clienthash=18caa7718c665b6d8597f7979bbdcb078ea117a0
|jsonhash=3d406da61837efeb1f14e5815c8e0c7f251e42ac |jsonfile=1.16.2-pre1
|serverhash=d4434bf4f2f0572a4eb54b3da1b1b3069a4e9ef2
|clientmap=3e9070cb333fbf94d81019fd9732f33fa3bab1e7
|servermap=40c5c9e8df1823e4d34f5148a16c018245d761db
|parent=1.16.2
|prevparent=1.16.1
|prev=20w30a
|next=1.16.2 Pre-release 2
|nextparent=1.16.2
}}<onlyinclude>
'''1.16.2 Pre-release 1''' (known as '''1.16.2-pre1''' in the [[launcher]]) is the first pre-release for [[Java Edition 1.16.2]], released on July 29, 2020,<ref>{{Mcnet|minecraft-1-16-2-pre-release-1|Minecraft 1.16.2 Pre-Release 1|July 29, 2020}}</ref> which adds two new options relating to effects, allows [[chain]]s to be placed along any axis, and fixes bugs.
== Additions ==
=== General ===
; Font
* Added 11 fractional glyphs:{{verify|in 21w14a these fraction symbols ½ ⅓⅔ ¼¾ ⅛⅜⅝⅞ are supported, were they also supported prior to 1.16.2 pre 1?}}
:{| class="wikitable"
! Glyph !! Unicode !! Name
|-
| ⅐ || {{cd|U+2150}} || {{cd|VULGAR FRACTION ONE SEVENTH}}
|-
| ⅑ || {{cd|U+2151}} || {{cd|VULGAR FRACTION ONE NINTH}}
|-
| ⅕ || {{cd|U+2155}} || {{cd|VULGAR FRACTION ONE FIFTH}}
|-
| ⅖ || {{cd|U+2156}} || {{cd|VULGAR FRACTION TWO FIFTHS}}
|-
| ⅗ || {{cd|U+2157}} || {{cd|VULGAR FRACTION THREE FIFTHS}}
|-
| ⅘ || {{cd|U+2158}} || {{cd|VULGAR FRACTION FOUR FIFTHS}}
|-
| ⅙ || {{cd|U+2159}} || {{cd|VULGAR FRACTION ONE SIXTH}}
|-
| ⅚ || {{cd|U+215A}} || {{cd|VULGAR FRACTION FIVE SIXTHS}}
|-
| ⅒ || {{cd|U+2152}} || {{cd|VULGAR FRACTION ONE TENTH}}
|-
| ↉ || {{cd|U+2189}} || {{cd|VULGAR FRACTION ZERO THIRDS}}
|-
| ⅟ || {{cd|U+215F}} || {{cd|FRACTION NUMERATOR ONE}}
|}
[[File:Emoji Added in JE 1.16.2 Pre1 and Relative Items.png|thumb|Emoji added in this version and relative items.]]
* Added 8 emoji relating to items in the game:
:{| class="wikitable"
! Glyph !! Unicode !! Name !! Item
|-
| 🗡 || {{cd|U+1F5E1}} || {{cd|DAGGER KNIFE}} || {{ItemLink|Sword}}
|-
| 🏹 || {{cd|U+1F3F9}} || {{cd|BOW AND ARROW}} || {{ItemLink|Bow}}
|-
| 🪓 || {{cd|U+1FA93}} || {{cd|AXE}} || {{ItemLink|Axe}}
|-
| 🔱 || {{cd|U+1F531}} || {{cd|TRIDENT EMBLEM}} || {{ItemLink|Trident}}
|-
| 🎣 || {{cd|U+1F3A3}} || {{cd|FISHING POLE AND FISH}} || {{ItemLink|Fishing Rod}}
|-
| 🧪 || {{cd|U+1F9EA}} || {{cd|TEST TUBE}} || {{ItemLink|Water Bottle|text=Potion}}
|-
| ⚗ || {{cd|U+2697}} || {{cd|ALEMBIC}} || {{ItemLink|Splash Water Bottle|text=Splash Potion}}
|-
| 🛡 || {{cd|U+1F6E1}} || {{cd|SHIELD}} || {{ItemLink|Shield}}
|}
* Added 3 other glyphs:
:{| class="wikitable"
! Glyph !! Unicode !! Name
|-
| ⯪ || {{cd|U+2BEA}} || {{cd|STAR WITH LEFT HALF BLACK}}
|-
| ⯫ || {{cd|U+2BEB}} || {{cd|STAR WITH RIGHT HALF BLACK}}
|-
| Ɑ || {{cd|U+2C6D}} || {{cd|LATIN CAPITAL LETTER ALPHA}}
|}
; [[Options]]
* Added a new "Distortion Effects" slider, which affects screen distortion effects such as [[Nausea]] and the [[nether portal]] distortion.
** Ranges from OFF (0%) to 100%.
** As the slider goes lower, a green overlay appears more intensely on the screen.
*** Despite the options menu saying this replaces the Nausea effect at lower levels, it actually acts as an inverse relationship. The distortion is not truly disabled unless the slider is set to "OFF."
* Added a new "FOV Effects" slider.
** Affects intensity of the change of FOV when doing things such as [[sprinting]], aiming a [[bow]], walking on [[soul sand]] or [[soul soil]] with [[Soul Speed]], or having the [[Speed]] or [[Slowness]] effects applied.{{more info|Any others?}}
* "Chat Delay" is now also available in chat settings.
** Previously, it was only available in accessibility settings.
== Changes ==
=== Blocks ===
; Bubble columns
* Affect projectiles as expected.
; [[Chain]]s
* Can now be placed in all orientations.
; [[Crimson Roots|Crimson]] and [[warped roots]]
* Now require shears to drop.
; Various non-solid blocks
* No longer block projectiles.{{more info}}
=== Mobs ===
; [[Endermen]]
* No longer place their held blocks onto [[bedrock]].
** This is to prevent them from placing blocks on the bedrock ceiling, allowing mobs to spawn.
; [[Piglin]]s
* Now become angry with players who open or destroy a [[minecart with chest]] or [[minecart with hopper]].
; [[Strider]]s
* Now attempt to pathfind to, and stay in [[lava]].
; [[Strider]] jockeys
* The zombified piglin riding a strider now spawns holding a [[warped fungus on a stick]].
; [[Villager]]s
* Now lose their job sites when changing dimensions.
=== Gameplay ===
; [[Soul Speed]]
* The Soul Speed boost is now kept when jumping and when the soul block is covered by non-full blocks, such as slabs.
=== General ===
; [[Custom dimension]]s and [[custom world generation]]
* Now use the same folder pattern in data packs as other resources: <samp>namespace/<''type''>/resource.json</samp>.
; Font
* Minor changes to some glyphs.<!-- Default font only -->
== Fixes ==
{{Fixes|fixedin=1.16.2 Pre-release 1
|;From released versions before 1.16
|73884|Throwable projectiles get destroyed at contact with non-solid blocks.
|96007|Arrows, trident, projectiles, splash, and lingering potions cannot be teleported from directly above the end portal, end gateway, or nether portal.
|102967|Shulker bullets cannot teleport through a nether or end portal.
|125758|Bubble column does not affect eggs, snowballs, ender pearls, splash potions, lingering potions, fireballs, or shulker bullets.
|158987|Raids still continue after a villager turns into a witch.
|163767|Villagers get ejected from a minecart when converted to a zombie villager.
|167045|Banners are rendered too dark in the inventory.
|175334|Villagers take longer to get a job the more workstations are nearby.
|185490|Separated trader llamas on leads cause server performance (TPS) issues.
|;From 1.16
|174469|Soul Speed does not work when jumping.
|174574|Soul Speed does not work when slabs and blocks of similar height are placed above the soul sand block.
|176015|Strider suffocates when player is saddled on it and looking up with warped fungus on a stick.
|176034|Players can walk on striders.
|177651|Despite being cold outside of lava, striders do not care about staying in lava.
|178061|Chat Delay option does not exist in Chat settings.
|182330|Crossbow-wielding piglins behave weirdly when they try to pursue invisible players.
|187398|Smithing table and stonecutter recipes are not unlocked when used.
|187904|Data packs cannot replace settings of vanilla dimensions during world creation.
|189414|Smithing table does not calculate the amount of output items correctly.
|189797|Hoglins, zoglins, melee piglins, and piglin brutes do not properly attack invisible entities within a normal range.
|191168|Piglins that convert into zombified piglins while sitting on a minecart sometimes sink into blocks.
|;From 1.16.1
|192032|Villagers do not always try to claim the closest workstation, and are sometimes focused on a non-existent one, or one out of their reach.
|193213|Leads are positioned incorrectly on players and wandering traders.
|195062|Raids often will not end in defeat when all villagers are dead if there are job sites in the village.
|195544|Game crashes after killing a mob that is being ridden by a guardian which is being ridden by a wither skeleton.
|196737|Crouching to avoid falling does not work with lanterns.
|;dev
|194263|Large End cities do not generate correctly, and get cut off.
|194299|Template pools fail to load via datapack.
|194845|Subspace Bubble advancement cannot be completed with 7km distance.
}}</onlyinclude>
== Video ==
{{slicedlime|qUsBxh-S7TU}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16.2-pre1]]
[[es:Java Edition 1.16.2 Pre-release 1]]
[[fr:Édition Java 1.16.2 Pre-release 1]]
[[ja:Java Edition 1.16.2 Pre-release 1]]
[[pt:Edição Java 1.16.2 Pre-release 1]]
[[ru:1.16.2 Pre-release 1 (Java Edition)]]
[[zh:Java版1.16.2-pre1]]

103
wiki_backup/1.16.2-pre2.txt Normal file
View file

@ -0,0 +1,103 @@
{{Infobox version
|title=Minecraft 1.16.2 Pre-release 2
|image=1.16.2-pre2.jpg
|image2=Java Edition 1.16.2 Pre-release 2.png
|edition=Java
|type=Pre-release
|date=August 5, 2020
|jsonhash=7940f399b0a06f848ce065703796e1c343ca78e3 |jsonfile=1.16.2-pre2
|clienthash=ce5762620a698b464d07a6c733cd66c7fa8072a1
|serverhash=d2cae287324631b2b4bfa609dd01c63cd6d4b78d
|clientmap=bb48f3ad38b3a3f174ff9fbf70dda00a66dd71da
|servermap=544cc22c04e4d104535a596289c4bf08c7c0efa5
|parent=1.16.2
|prevparent=1.16.1
|prev=1.16.2 Pre-release 1
|next=1.16.2 Pre-release 3
|nextparent=1.16.2
}}<onlyinclude>
'''1.16.2 Pre-release 2''' (known as '''1.16.2-pre2''' in the [[launcher]]) is the second pre-release for [[Java Edition 1.16.2]], released on August 5, 2020,<ref>{{Mcnet|minecraft-1-16-2-pre-release-2|Minecraft 1.16.2 Pre-Release 2|August 5, 2020}}</ref> which changes the result of inter-dimensional teleporting, allows nether roots to be broken by hand, and fixes bugs.
== Changes ==
=== Blocks ===
; [[Crimson Roots|Crimson]] and [[warped roots]]
* Now drop when broken without [[shears]] again.
; Nether vegetation
* No longer catches [[fire]].
=== Items ===
; [[Pufferfish (item)|Pufferfish]]
* Now gives [[Nausea]] I instead of Nausea II when eaten.
** This has no practical effect in-game as the level of the Nausea effect does not change anything.
=== Command format ===
; {{cmd|execute}}
* {{cmd|execute in}} now respects dimension scaling for relative and local coordinates: the execution position (only the X/Z part) of a command is divided by 8 when traveling from the Overworld to the Nether, and is multiplied by 8 when vice versa.
** If a value is added after the tilde, that value is added only after the new scaled position is calculated. For instance, <code>~5</code> will first scale the player's current position (multiplying by eight when traveling to the Overworld or dividing by eight when going to the Nether) before adding five to that outputted value.
** For example, if a player at position {{cd|(16,64,16)}} in Overworld runs command {{cmd|execute in minecraft:the_nether run tp ~ ~ ~}}, the player would now be teleported to {{cd|(2,64,2)}} in the Nether.
*** Relatively, if a player at position {{cd|(2,64,2)}} in the Nether runs command {{cmd|execute in minecraft:overworld run tp ~ ~ ~}}, the player would now be teleported to {{cd|(16,64,16)}} in Overworld.
*** If a player at position {{cd|(80,64,80)}} in Overworld runs command {{cmd|execute in minecraft:the_nether run tp ~ ~ ~5}}, the player would now be teleported to {{cd|(10,64,15)}} in the Nether.
*** If a player at position {{cd|(16,64,16)}} in Overworld runs command {{cmd|execute in minecraft:the_nether run tp 16 64 16}}, the player would still be teleported to {{cd|(16,64,16)}} in the Nether.
** The behavior before this version can be done by running command {{cmd|execute in <target dimension> positioned as @s run tp @s ~ ~ ~}}.
** Applies to [[custom dimension]]s as well.
=== General ===
;[[Custom dimension]] type
* Replaced {{nbt|bool|shrunk}} with {{nbt|float|coordinate_scale}}.
** For example, {{nbt|float|coordinate_scale}} for {{cd|minecraft:overworld}} is 1.0, for {{cd|minecraft:the_nether}} is 8.0, thus the {{cmd|execute in}} command to go to the Overworld actually multiplies the execution position (only the X/Z part) with {{cd|8.0/1.0}} ({{cd|1.0/8.0}} when vice versa), which is 8 (0.125 when vice versa).
** If there are two custom dimension type {{cd|custom:a}} with {{cd|coordinate_scale}} set to 2.33, type {{cd|custom:b}} set to 3.14, then the {{cmd|execute in}} command to go to {{cd|custom:a}} would multiply the execution position (only the X/Z part) with {{cd|3.14/2.33}} ({{cd|2.33/3.14}} when vice versa).
== Fixes ==
{{Fixes|fixedin=1.16.2 Pre-release 2
|;From released versions before 1.16
|69876|Pistons at Y{{=}}1 do not push downwards, and at Y{{=}}254 do not push upwards.
|124320|Endermen can pick up and place snowless snowy grass blocks.
|130558|Item frames cannot be emptied if gamerule {{cd|doEntityDrops}} is set to false.
|134084|If gamerule {{cd|sendCommandFeedback}} is disabled, {{cmd|msg}} or {{cmd|tell}} do not display the message to the sender.
|136553|Dyes in Creative inventory are in reverse order.
|152037|Powered, activator, and detector rails are deleted when pushed or pulled onto a block they cannot be placed on.
|169203|Sloped redstone type rail not dropping item when pushed by piston to a spot without adjacent block.
|177684|Cocoa beans, bone meal, and lapis lazuli are placed among the dyes in the Creative inventory.
|177733|Powered and activator rail duplication.
|196473|Pufferfish gives Nausea II instead of the maximum of Nausea I.
|;From 1.16
|176491|Nylium randomly catches fire from lava, and burns infinitely.
|187357|Strongholds will not generate in {{cd|floating_islands}} or {{cd|caves}} preset.
|189736|{{cd|distance}} within a predicate no longer works.
|190552|Demo mode resets position and inventory upon launch.
|190859|{{cd|floating_islands}} or {{cd|caves}} buffet worlds no longer generate strongholds, and ender eyes do not locate previously-generated strongholds after upgrading to 1.16.
|;From 1.16.1
|192136|Lava damage works differently than in previous versions.
|192236|Endermen can place blocks on top of item frames on the floor.
|192371|Paintings in the same block space pop off when chunk loads.
|192845|Block event lag in 1.16 is excessive.
|195851|Hat layer on helmets detaches from piglins' heads while bartering.
|196245|Charged creepers do not always drop their skull if zombie variants are nearby.
|;dev
|194867|Minecarts come out the wrong side of a Nether portal and lose momentum when coming back to the Overworld.
|194953|Custom Biomes are not useable in predicates.
|195803|Mob kill statistics are formatted in reverse: "N killed you <mob> times."
|;prev
|196441|Stonecutter and smithing table recipes are not given after crafting a stack of more than one.
|196469|{{key|F1}} hides the Nausea green tint.
|196653|Creating multiple datapack dimensions that reference the same {{cd|dimension_type}} string causes "unregistered dimension" crash.
|196743|Custom and modified biomes do not work in the Overworld.
}}</onlyinclude>
== Video ==
{{slicedlime|Nszq32PuHbc}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16.2-pre2]]
[[es:Java Edition 1.16.2 Pre-release 2]]
[[fr:Édition Java 1.16.2 Pre-release 2]]
[[ja:Java Edition 1.16.2 Pre-release 2]]
[[pt:Edição Java 1.16.2 Pre-release 2]]
[[ru:1.16.2 Pre-release 2 (Java Edition)]]
[[zh:Java版1.16.2-pre2]]

View file

@ -0,0 +1,63 @@
{{Infobox version
|title=Minecraft 1.16.2 Pre-release 3
|image=1.16.2-pre2.jpg
|image2=Java Edition 1.16.2 Pre-release 3.png
|edition=Java
|type=Pre-release
|date=August 6, 2020
|clienthash=8cfa861961862c263ff80f2f6478535fd1ed7d8b
|jsonhash=46cb062b849b43fa1958a5f71b5b779615bc0e8b |jsonfile=1.16.2-pre3
|serverhash=bd47f78f185a525388e446aa44975c147057ebbd
|clientmap=e912e5eda715f1b65ce7c23a7825ea9024cf1c35
|servermap=e28d7c32ce06496a284819467add0f021eebaea7
|parent=1.16.2
|prevparent=1.16.1
|prev=1.16.2 Pre-release 2
|next=1.16.2 Release Candidate 1
|nextparent=1.16.2
}}<onlyinclude>
'''1.16.2 Pre-release 3''' (known as '''1.16.2-pre3''' in the [[launcher]]) is the third and final pre-release for [[Java Edition 1.16.2]], released on August 6, 2020,<ref>{{Mcnet|minecraft-1-16-2-pre-release-2|Minecraft 1.16.2 Pre-Release 3|August 6, 2020}}</ref> which fixes bugs.
== Changes ==
=== Mobs ===
; [[Wolves]]
* Now render correctly in dark areas.
== Fixes ==
{{Fixes|fixedin=1.16.2 Pre-release 3
|;From released versions before 1.16
|105248|Wet wolves become nearly black in dark areas.
|107529|{{cd|Marker:1b}} armor stands render themselves and their equipment dark if inside solid blocks.
|167756|Wolf is rendered too dark when not directly affected by skylight.
|;From 1.16
|191388|"No key position_predicate in MapLike" console spam.
|;From 1.16.1
|197049|Pending messages are saved after relogging, while normal messages are not.
|197053|Pressing {{keys|F3+D}} clears the pending lines message, but does not clear the pending messages.
|;dev
|196534|Game does not recognize custom dimension type: {{cd|java.lang.IllegalStateException: Unregistered dimension type}}.
|197242|Crash with custom multi-noise dimension: {{cd|java.lang.IllegalStateException: Unregistered dimension type: cha@90d4173}}.
|;prev
|197122|Game crashes after entering a Debug Mode world.
|197152|Ghost blocks can be generated in some piston setups.
|197218|Piston arm appears twice during retraction in some mechanisms.
|197223|Game crashes after creating or entering a custom world with no defined biomes or issues with the configuration files.
}}</onlyinclude>
== Video ==
{{slicedlime|TqqFYrwgukE}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16.2-pre3]]
[[es:Java Edition 1.16.2 Pre-release 3]]
[[fr:Édition Java 1.16.2 Pre-release 3]]
[[ja:Java Edition 1.16.2 Pre-release 3]]
[[pt:Edição Java 1.16.2 Pre-release 3]]
[[ru:1.16.2 Pre-release 3 (Java Edition)]]
[[zh:Java版1.16.2-pre3]]

View file

@ -0,0 +1,47 @@
{{Infobox version
|title=Minecraft 1.16.2 Release Candidate 2
|image=1.16.2-pre2.jpg
|image2=Java Edition 1.16.2 Release Candidate 2.png
|edition=Java
|type=Release candidate
|date=August 10, 2020
|clienthash=157f7160b1b41bbaa681fcf8d98542bc27ab4b15
|jsonhash=a59160ff3c5f6b4c411f41c5e9386694649e6fd1|jsonfile=1.16.2-rc2
|serverhash=45287d794fa2631b8da9b9002696ebe406fbed6b
|clientmap=614f6579d02959886633165f209574a7cf39e723
|servermap=3405a0f2c0ccacd36a8158ae29b16eaa915b5d28
|parent=1.16.2
|prevparent=1.16.1
|prev=1.16.2 Release Candidate 1
|nextparent=1.16.2
}}<onlyinclude>
'''1.16.2 Release Candidate 2''' (known as '''1.16.2-rc2''' in the [[launcher]]) is the second and final release candidate for [[Java Edition 1.16.2]], released on August 10, 2020,<ref>{{Mcnet|minecraft-1-16-2-pre-release-2?rc2|Minecraft 1.16.2 Release Candidate 2|August 10, 2020}}</ref> which fixes bugs.
== Fixes ==
{{Fixes|fixedin=1.16.2 Release Candidate 2
|;dev
|197348|Piston heads occasionally appear twice in certain piston setups.
|;prev
|197354|Block event lag in 1.16.2-rc1 is still higher than in 1.15.2.
|197362|Cannot load 2 or more resource packs if the second one is incompatible.
|197512|Incompatible resource packs do not display their name and description anymore.
}}</onlyinclude>
== Video ==
{{slicedlime|1Go6fRlqQGs}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[cs:1.16.2-rc2]]
[[de:1.16.2-rc2]]
[[es:Java Edition 1.16.2 Release Candidate 2]]
[[fr:Édition Java 1.16.2 Release Candidate 2]]
[[ja:Java Edition 1.16.2 Release Candidate 2]]
[[pt:Edição Java 1.16.2 Release Candidate 2]]
[[ru:1.16.2 Release Candidate 2 (Java Edition)]]
[[zh:Java版1.16.2-rc2]]

View file

@ -0,0 +1,43 @@
{{Infobox version
|title=Minecraft 1.16.3 Release Candidate 1
|image=1.16.3-rc1.jpg
|image2=Java Edition 1.16.3 Release Candidate 1.png
|edition=Java
|type=Release candidate
|date=September 7, 2020
|clienthash=fffe9f9279f52fa8a5624f4753ac9215b17cabc3
|jsonhash=72aecc0ca7725038b4ee1690cbbe972f0799722d |jsonfile=1.16.3-rc1
|serverhash=562bf3e75afea00875cff4a06165f93056646f32
|clientmap=faac5028fbca3859db970cc4ca041aeec55f6d9d
|servermap=e75ff1e729aec4a3ec6a94fe1ddd2f5a87a2fd00
|parent=1.16.3
|prevparent=1.16.2
|nextparent=1.16.3
}}<onlyinclude>
'''1.16.3 Release Candidate 1''' (known as '''1.16.3-rc1''' in the [[launcher]]) is the first and only release candidate for [[Java Edition 1.16.3]], released on September 7, 2020,<ref>{{Mcnet|minecraft-1-16-3-release-candidate-1|Minecraft 1.16.3 Release Candidate 1|September 7, 2020}}</ref> which fixes two bugs.
== Fixes ==
{{Fixes|fixedin=1.16.3 Release Candidate 1
|;From 1.16.2
|196449|[[Piglin]]s, [[piglin brute]]s, [[hoglin]]s and [[zoglin]]s have trouble pathfinding to the player when attacking.
|198678|Giving an [[item]] and a [[gold ingot]] to a baby piglin and killing it duplicates the item.
}}</onlyinclude>
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16.3-rc1]]
[[es:Java Edition 1.16.3 Release Candidate 1]]
[[fr:Édition Java 1.16.3 Release Candidate 1]]
[[ja:Java Edition 1.16.3 Release Candidate 1]]
[[ko:Java Edition 1.16.3 릴리스 후보 1]]
[[lzh:爪哇版一點一六點三之候一]]
[[pt:Edição Java 1.16.3 Release Candidate 1]]
[[ru:1.16.3 Release Candidate 1 (Java Edition)]]
[[th:รุ่น Java 1.16.3 Release Candidate 1]]
[[uk:1.16.3 Release Candidate 1 (Java Edition)]]
[[zh:Java版1.16.3-rc1]]

View file

@ -0,0 +1,69 @@
{{Infobox version
|title=Minecraft 1.16.4 Pre-release 1
|image=20w19a.png
|image2=Java Edition 1.16.4 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=October 15, 2020
|clienthash=44745d09a0c6b8faca3989274996d5193cdc1560
|jsonhash=fcde4c4f332110829f1bd117c897b1284fa37fac |jsonfile=1.16.4-pre1
|serverhash=28eb6f8c4c05eec278e3e7f9f0379a16adbfb91d
|clientmap=6366c7397087acc8f021401afd4c23220ad06197
|servermap=cf2fa1a00c551d5a3d4d448f1beb7562abd66c47
|parent=1.16.4
|prevparent=1.16.3
|next=1.16.4 Pre-release 2
|nextparent=1.16.4
}}<onlyinclude>
'''1.16.4 Pre-release 1''' (known as '''1.16.4-pre1''' in the [[launcher]]) is the first pre-release for [[Java Edition 1.16.4]], released on October 15, 2020,<ref>{{Mcnet|minecraft-1-16-4-pre-release-1|Minecraft 1.16.4 Pre-release 1|October 15, 2020}}</ref> which adds the social interactions screen and fixes two bugs.
== Additions ==
=== General ===
* Added [[Social interactions screen]].
** Gives players the ability to disable chatting with certain players, thus hiding any messages receiving from them.
** Opens with a configurable key binding, by default {{keys|P}}.
** Whether a player is hidden resets when re-joining a server.
== Changes ==
=== Items ===
; [[Netherite leggings]]
* Changed the texture of the worn netherite leggings model.
=== General ===
; [[Crash]]es
* More information is now added to the crash log in cases where poor performance causes the server to crash.
; [[Options]]
* Added "joinedFirstServer" option to <samp>[[options.txt]]</samp>.
; [[Protocol version]]s
* New network protocol scheme, with a high bit (bit 30) set for snapshots. The protocol version will increase by 1 for each snapshot, but full releases may keep the same protocol version as the previous full release in cases where the network protocols are compatible.
; [[Server]]s
* When the server and client version are incompatible, a message reading "Incompatible version!" is displayed, instead of "Client out of date!" or "Server out of date!".
== Fixes ==
{{Fixes|fixedin=1.16.4 Pre-release 1
|;From 1.16
|192434|The top front texture of worn netherite leggings is inconsistent with the rest of the texture.
|;From 1.16.2
|199487|World generation deadlock causes a crash.
}}</onlyinclude>
== Video ==
{{slicedlime|a4guw2yTcjI}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16.4-pre1]]
[[es:Java Edition 1.16.4 Pre-release 1]]
[[fr:Édition Java 1.16.4 Pre-release 1]]
[[ja:Java Edition 1.16.4 Pre-release 1]]
[[pt:Edição Java 1.16.4 Pre-release 1]]
[[ru:1.16.4 Pre-release 1 (Java Edition)]]
[[zh:Java版1.16.4-pre1]]

View file

@ -0,0 +1,50 @@
{{Infobox version
|title=Minecraft 1.16.4 Release Candidate 1
|image=1.16.4-rc1.jpg
|image2=Java Edition 1.16.4 Release Candidate 1.png
|edition=Java
|type=Release candidate
|date=October 27, 2020
|clienthash=1fcf6ddd5ee925d19eadc4b7ef7278365979c7fd
|jsonhash=6af661e74841ff39edb2acb7796af85c4935d261 |jsonfile=1.16.4-rc1
|serverhash=daf2d997bd6b1725b6d59b48f533a6804d43db33
|clientmap=23a0bc36490545566a79ea5345f37283f61eeaa5
|servermap=0413b5c8bb13c62f81c1336c58c09e29d8b43cb6
|parent=1.16.4
|prev=1.16.4 Pre-release 2
|next=
|prevparent=1.16.3
|nextparent=1.16.4
}}<onlyinclude>
'''1.16.4 Release Candidate 1''' (known as '''1.16.4-rc1''' in the [[launcher]]) is the first and only release candidate for [[Java Edition 1.16.4]], released on October 27, 2020,<ref>{{Mcnet|minecraft-1-16-4-release-candidate-1|Minecraft 1.16.4 Release Candidate 1|October 27, 2020}}</ref> which fixes bugs. This is the final release candidate to be released in 2020.
== Additions ==
=== General ===
; [[Chat]]
* Added an option to hide matched names.
** Some servers send chat messages in non-standard formats. With this option on, the game will attempt to apply chat hiding anyway by matching the text in messages.
== Fixes ==
{{Fixes|fixedin=1.16.4 Release Candidate 1
|;prev
|202614|Search function in social interactions screen only finds names that begin with the letters that were typed in.
}}</onlyinclude>
== Video ==
{{slicedlime|JZq1QvMUC9I}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.16.4-rc1]]
[[es:Java Edition 1.16.4 Release Candidate 1]]
[[fr:Édition Java 1.16.4 Release Candidate 1]]
[[ja:Java Edition 1.16.4 Release Candidate 1]]
[[lzh:爪哇版一點一六點四之候一]]
[[pt:Edição Java 1.16.4 Release Candidate 1]]
[[ru:1.16.4 Release Candidate 1 (Java Edition)]]
[[zh:Java版1.16.4-rc1]]

246
wiki_backup/1.17-pre1.txt Normal file
View file

@ -0,0 +1,246 @@
{{Infobox version
|title=Minecraft 1.17 Pre-release 1
|image=1.17-pre1.jpg
|image2=Java Edition 1.17 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=May 27, 2021
|jsonhash=fdbcc84afc00e47d92288c93a46b72598c6e2cf6 |jsonfile=1.17-pre1
|clienthash=940af6eda421da56e3bf9c390df65ba713cc8f7f
|clientmap=7310449e6c7bdd202e4f2cd6bd7ad177357f473c
|serverhash=80a01a1178bcfb67b42636df3a9cdd275f3cc4d4
|servermap=1f6f65434a5ac334607a1141d676f7974308ae36
|otherdl={{dl|e0738fc94f08362fe2eff71f5bd46288d6647e21|custom|name=CavesAndCliffsPreview.zip|title=Data pack}}<ref group=note>Re-enables features set to release for [[Java Edition 1.18|1.18]].</ref>
|parent=1.17
|prevparent=1.16.5
|prev=21w20a
|next=1.17 Pre-release 2
|nextparent=1.17
}}<onlyinclude>
'''1.17 Pre-release 1''' (known as '''1.17-pre1''' in the launcher) is the first pre-release for [[Java Edition 1.17]], released on May 27, 2021,<ref>{{Mcnet|minecraft-1-17-pre-release-1|Minecraft 1.17 Pre-Release 1|May 27, 2021}}</ref> which re-added candles to [[Survival]] mode, changed [[credits]] and the glowing on signs, added new [[advancements]] and [[splash]]es, and fixed bugs.
== Additions ==
=== Blocks ===
; [[Candle]]s
* Re-added candles to the creative inventory.
* Candles can be crafted again.
; [[Potted azalea]] and [[potted flowering azalea]]
* Obtained by planting [[azalea]] or [[flowering azalea]] into a flower pot.
=== Command format ===
; {{cmd|perf}}
* Starts a recording for 10 seconds capturing metrics such as tick durations, used heap sizes and other more detailed stats.
* Executing again before the 10-second limit ends the recording early.
=== Gameplay ===
; [[Advancement]]s
* Added eleven new advancements:
** Whatever Floats Your Goat!
*** Float in a [[boat]] with a [[goat]].
** Wax On
*** Apply [[wax]] to a [[copper block]].
** Wax Off
*** Scrape wax off a copper block.
** The Cutest Predator
*** Catch an [[axolotl]] in a [[bucket]].
** The Healing Power of Friendship!
*** Team up with an axolotl and win a fight.
** Glow and Behold!
*** Make a [[sign]] glow.
** Light as a Rabbit
*** Walk on [[powder snow]] with [[leather boots]].
** Surge Protector
*** Have lightning strike a [[lightning rod]] near a [[villager]] without setting the area on fire.
** Is It a Bird?
*** Look at a [[parrot]] through a [[spyglass]].
** Is It a Balloon?
*** Look at a [[ghast]] through a spyglass.
** Is It a Plane?
*** Look at an [[ender dragon]] through a spyglass.
* Adds new advancement triggers.
** <code>started_riding</code>
*** Triggered when player starts riding a vehicle or entity starts riding vehicle currently ridden by player.
** <code>lightning_strike</code>
*** Triggers for any player on the server when lightning finishes (i.e. entity disappears).
** <code>using_item</code>
*** Triggered for every tick of using items (like crossbows, spyglass, fishing rods, etc).
=== General ===
<!-- Added in 21w11a - were there any changes in pre1? --
; Debug
* Added {{ctrl|F3+L}} shortcut to generate and persist performance metrics from in-game.
** Pressing F3+L while in the game starts a recording for 10 seconds capturing metrics such as tick.
** Pressing F3+L before the 10 second limit ends the recording early.
** Also include reports for the integrated server on single-player worlds.
-->
; [[Predicate]]
* Added <code>lightning_bolt</code> sub-predicate.
; [[Splash]]es
* Added the following splash text:
** "<nowiki>[this splash text has been delayed until part 2]</nowiki>"
** "Contains simulated goats!"
** "Home-made!"
** "There's <<a cat on ,my keyboard!~"{{sic}}
** "The cutest predator you'll ever meet!"
** "Now you are thinking with pistons!"
** "Get to the coppah!"
** "Board game version also available!"
** "Honey, I waxed the copper!"
** "Plant-based light sources!"
** "Made by "real" people!"
; [[Tag]]s
* Added <code>lava_pool_stone_replaceables</code> block tag.
** Includes the [[Tag#blocks features_cannot_replace|#features_cannot_replace]] block tag and the [[Tag#blocks leaves|#leaves]] block tag.
* Added <code>geode_invalid_blocks</code> block tag.
** Includes [[bedrock]], [[water]], [[lava]], [[ice]], [[packed ice]], and [[blue ice]].
== Changes ==
=== Blocks ===
; [[Candle]]s
* Candles now have a different texture when lit.
; [[Sign]]s
* Glowing text on signs now has an outer glow, making text in dark colors more visible in the dark.
=== Items ===
; [[Big dripleaf]] and [[small dripleaf]]
* Changed the held item models in the player's right hand.
=== Command format ===
; {{cmd|debug}}
* Removes debug report command.
* Replaced by {{key|F3+L}} and {{cmd|perf}}.
=== Gameplay ===
; [[Advancement]]s
* Added <code>source</code> condition to <code>effects_changed</code> trigger.
; [[Crafting]]
* It is now no longer possible to craft [[suspicious stew]] using [[flowering azalea]] or [[flowering azalea leaves]].<ref>{{bug|MC-226521|||Works As Intended}}</ref>
=== General ===
; Credits
* Updated the credits, which were brought over from Bedrock Edition; as a result, the credits are significantly longer, as they include people and corporations that did not work on ''Java Edition''.<ref>{{bug|MC-226535||Java Edition is using credits from Bedrock now|Works As Intended}}</ref>
* Changed the format from {{cd|.txt}} to {{cd|.json}}.
* Now scroll faster when holding {{key|Space}}.
; [[Predicate]]
* Added <code>passenger</code>, <code>stepping_on</code> and <code>lightning_bolt</code> properties to <code>entity_properties</code> predicate
* Added <code>looking_at</code> (entity currently viewed by player) condition to <code>player</code> sub-predicate.
* Expanded <code>item</code> field on <code>item</code> predicate to <code>items</code>.
* Now accepts an array of item types.
* Expanded <code>block</code> field on <code>block</code> predicate to <code>blocks</code>.
** Now accepts an array of block types.
; [[Splash]]es
* Removed "Woo, /v/!"
; [[Tag]]s
* Added [[flowering azalea]] and [[flowering azalea leaves]] to the <code>flowers</code> block and item tags.
* Removed flowering azalea and flowering azalea leaves from the <code>small_flowers</code> block and item tags.
** This prevents [[endermen]] from picking up these blocks, as well as crafting suspicious stew with them.
* Removed [[moss carpet]] from the <code>mineable/axe</code> block tag.
* Added potted azalea bushes and potted flowering azaleas bushes to the <code>flower_pots</code> block tag.
* Added non-waxed oxidized copper variants to the <code>needs_stone_tool</code> block tag.
== Fixes ==
{{fixes|fixedin=1.17 Pre-release 1
|;old
|19690|Reducing <code>maxHealth</code> / <code>max_health</code> can cause fake death.
|65587|Lag spike while loading player head textures/player skins.
|99680|Heart jittering effect doesn't take absorption into account.
|104897|End crystals placed on exit portals generated before 1.9 do not respawn the ender dragon.
|118757|Increasing Game State Rain Level values make the game increasingly laggier and distorts UI.
|130523|Void World spawns you at y{{=}}0 even if you entered 64 air blocks in customization.
|148809|Structure block data length limited to 12.
|163945|Intersecting structures can create corrupted block entities (spawner / chest).
|189336|{{key|Shift}}ing around servers in the server list crashes the game (<code>ArrayIndexOutOfBoundsException</code>).
|190952|Apostrophe in "Developers of Mo' Creatures" heading is inconsistent with other apostrophes in credits.
|192889|When placing certain heads or putting them in entities' head slot the game stutters.
|197942|Leaves change to stone near Lava Pool (Recurrence of MC-48340).
|198957|End Portal Frames change to Stone near Lava Pool.
|202249|Angering passive mobs in new nether chunks very far away from previously generated chunks, then entering a nether portal causes server to completely freeze.
|203131|Setting the weight in Template Pool to high values will lag world and can cause out of memory error.
|209819|Server crash when pathfinding to player that is teleporting away.
|213062|A ruined portal generated in an end portal.
|218112|<code>SynchedEntityData</code> is using locks incorrectly.
|218972|The glowing effect outline omits parts of entities if the entity is invisible.
|224778|Game crashes when there is a block with no <code>facing</code> block state in <code>#wall_corals</code> and a warm ocean tries to generate.
|;dev
|203558|Lighting a candle is sometimes delayed.
|203661|Flowing liquids look very dark through tinted glass.
|203704|Candles don't show flame animations when particles are set to "Minimal".
|204649|Amethyst blocks don't make chime sounds when walked on by certain mobs.
|205035|Powder Snow Bucket is not grouped with Snowball or buckets in creative inventory.
|208604|While the mainhand is empty and there's a loaded crossbow in the offhand, the mainhand will appear invisible.
|211601|Entities are loaded after scheduled ticks are processed causing detector rails, pressure plates, etc. to turn off.
|212142|Applying glow ink on signs doesn't render the text bright without also having applied a custom color.
|212146|Glow lichen can generate floating inside underground structures.
|212207|Geodes generating inside icebergs.
|213799|Dripleaf isn't properly held in the player's hand.
|214057|Entities no longer showing flame animation when in water/lava at the same time.
|214636|Small dripleaf leafs can overlap each other and cause z-fighting.
|214684|Azaleas cannot be placed in flower pots.
|216276|Lava pools break bedrock with custom world generation.
|218831|Lots of missing shaders in the game assets.
|219762|More performant noise blending algorithm in <code>BlendedNoise</code>.
|221554|When searching, the goat spawn egg appears in the middle of the different boat types.
|221819|Inconsistency: Enderman is able to pick up flowering azalea leaves, while unable to hold other types of leaves.
|221820|Inconsistency: Enderman is able to pick up flowering azalea, while unable to hold normal azalea bush.
|223021|<code>glShaderSource</code> fails on some AMD drivers resulting in a crash on 1.17.
|223843|Mycelium inside <code>enderman_holdable.json</code> twice.
|224159|Absorbtion hearts don't have the wither heart effect.
|224349|Attempting to save multiple debug profiles during the same second fails to properly save all but the first profile.
|224445|Reloading resource packs with fabulous graphics causes screen to become black, after a few times causes crash for AMD drivers.
|224861|Falling blocks disappear for a moment when landing.
|224862|Azalea and Flowering Azaleas can take bone meal despite being on clay.
|225010|Closing the inventory in creative mode while having an item on the cursor turns it into a ghost item.
|225129|Players do not despawn until they respawn.
|225193|Goats will attempt to ram entities that are outside of the world border.
|225315|Selected text on signs blinks.
|225404|The axe is still an appropriate tool for moss carpets.
|225722|<code>java.lang.IllegalArgumentException: bound must be positive</code>.
|225773|Axolotls can make ambient noises when they're playing dead.
|226192|Crash upon attempting to create a new scoreboard objective: <code>java.lang.NullPointerException: Cannot invoke "String.toLowerCase(java.util.Locale)" because "☃" is null</code>.
|;previous
|225843|Snow layers can still generate floating over lakes.
|225850|Grass, tall grass, flower, double flower, fern, large fern and tree can generate on sand or gravel.
|225853|Minecraft sometimes crashes when trying to start 21w20a for the first time.
|225895|Floating grass can still generate above lava lakes.
|225916|Non-waxed oxidized copper blocks don't require at least stone tier to be mined.
|225919|Coal Ore from fossils can generate through bedrock.
|225929|Item statistic sorting not functioning.
|225978|Non-waxed weathered copper blocks appear twice in <code>needs_stone_tool.json</code>.
|;private
|213869|Ender dragon's death animation resets when the chunk it is in is reloaded.
}}</onlyinclude>
== Video ==
{{slicedlime|Yt3h3OjLLNY|ybsephcOJkQ}}
== Gallery ==
<gallery>
1.17-pre1(HD).jpg|Full screenshot of banner.
</gallery>
== References ==
{{reflist}}
== Notes ==
{{Notelist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.17-pre1]]
[[es:Java Edition 1.17 Pre-release 1]]
[[fr:Édition Java 1.17 Pre-release 1]]
[[ja:Java Edition 1.17 Pre-release 1]]
[[pt:Edição Java 1.17 Pre-release 1]]
[[ru:1.17 Pre-release 1 (Java Edition)]]
[[zh:Java版1.17-pre1]]

72
wiki_backup/1.17-pre2.txt Normal file
View file

@ -0,0 +1,72 @@
{{Infobox version
|title=Minecraft 1.17 Pre-release 2
|image=1.17-pre2.jpg
|image2=Java Edition 1.17 Pre-release 2.png
|edition=Java
|type=Pre-release
|date=May 31, 2021
|jsonhash=da08b22628bb013f46d9d9aa7e6a78d458c78f6a |jsonfile=1.17-pre2
|clienthash=72ebf53f36151a9c2657dca80f72a97c0917d3ce
|clientmap=c3fc5f17f6a63498078cbcc72872e78c500120f6
|serverhash=d8756c67ce3b3fe20d0510afb3e22fa16310b2e6
|servermap=f79c9cad034152d13c8fab69c441eb06138aacc6
|otherdl={{dl|622bf0fd298e1e164ecd05d866045ed5941283cf|custom|name=CavesAndCliffsPreview.zip|title=Data pack}}<ref group=note>Re-enables features set to release for [[Java Edition 1.18|1.18]].</ref>
|parent=1.17
|prevparent=1.16.5
|prev=1.17 Pre-release 1
|next=1.17 Pre-release 3
|nextparent=1.17
}}<onlyinclude>
'''1.17 Pre-release 2''' (known as '''1.17-pre2''' in the launcher) is the second pre-release for [[Java Edition 1.17]], released on May 31, 2021,<ref>{{Mcnet|minecraft-1-17-pre-release-2|Minecraft 1.17 Pre-Release 2|May 31, 2021}}</ref> which fixed bugs and crashes, including fixes related to [[smooth lighting]].
== Changes ==
=== Block ===
; [[Flowering azalea leaves]]
* The namespaced ID was changed from <code>minecraft:azalea_leaves_flowers</code> to <code>minecraft:flowering_azalea_leaves</code>.
== Fixes ==
{{fixes|fixedin=1.17 Pre-release 2
|;old
|68129|Smooth lighting doesn't work properly underwater.
|106417|Shulkers can be pushed outside of the world border by a piston.
|173834|Glowing damaged iron golem outline shows cracks.
|196298|Arrows fired into the side of bamboo or pointed dripstone never despawn.
|220698|The <code>ExplosionPower</code> of ghast fireballs is uncapped, causing a freeze / crash.
|223602|Glowing translucent entities often don't merge their outlines with other glowing entities.
|;dev
|205840|Smooth lighting behaves oddly on blocks covered with tinted glass.
|213767|Flowering azalea leaves ID is unintuitive.
|220109|Horses' fur patterns are outlined by the glowing effect.
|225190|TNT can be pushed with enchanted sword with knockback.
|225911|Slimes and magma cubes not interacting with player.
|;previous
|226470|Nether fossils generate on the nether roof above bedrock in soul sand valleys.
|226561|Facing away from signs with glowing text makes the text disappear or z-fight.
|226576|Unknown CPU on Debug menu.
|226654|<code>Failed sysctl call</code> errors on start and {{key|F3+L}} with certain devices.
|226782|{{cmd|debug start}} does not work as described.
|;private
|224580|Duplication exploit with dolphins.
}}</onlyinclude>
== Video ==
{{slicedlime|1fGjvA2-KVs|M-y-a6jlOMo}}
== Notes ==
{{Notelist}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.17-pre2]]
[[es:Java Edition 1.17 Pre-release 2]]
[[fr:Édition Java 1.17 Pre-release 2]]
[[ja:Java Edition 1.17 Pre-release 2]]
[[pt:Edição Java 1.17 Pre-release 2]]
[[ru:1.17 Pre-release 2 (Java Edition)]]
[[th:รุ่น Java 1.17 Pre-release 2]]
[[zh:Java版1.17-pre2]]

85
wiki_backup/1.17-pre3.txt Normal file
View file

@ -0,0 +1,85 @@
{{Infobox version
|title=Minecraft 1.17 Pre-release 3
|image=1.17-pre2.jpg
|image2=Java Edition 1.17 Pre-release 3.png
|edition=Java
|type=Pre-release
|date=June 1, 2021
|jsonhash=b392c937e2424d76aee65ab076f334311deb3241 |jsonfile=1.17-pre3
|clienthash=3d587b97faf19d4c2fa63e03d1920eb37a95920b
|clientmap=33e1b9881086dab9e89e919797fbf323870d2469
|serverhash=18abbb3f980fc9b05188535db45a67276ea41f90
|servermap=394bffe6a0ba2ee2eaeb7163b0184afc533c704c
|otherdl={{dl|622bf0fd298e1e164ecd05d866045ed5941283cf|custom|name=CavesAndCliffsPreview.zip|title=Data pack}}<ref group=note>Re-enables features set to release for [[Java Edition 1.18|1.18]].</ref>
|parent=1.17
|prevparent=1.16.5
|prev=1.17 Pre-release 2
|next=1.17 Pre-release 4
|nextparent=1.17
}}<onlyinclude>
'''1.17 Pre-release 3''' (known as '''1.17-pre3''' in the launcher) is the third pre-release for [[Java Edition 1.17]], released on June 1, 2021,<ref>{{Mcnet|minecraft-1-17-pre-release-2|Minecraft 1.17 Pre-Release 3|June 1, 2021}}</ref> which fixed bugs and crashes, as well as tweaking the lit [[candle]] textures.
== Changes ==
=== Blocks ===
; [[Candle]]s
* Tweaked the textures of lit candles.
; [[Glow lichen]]
* If attached to no sides of a block (by setting all directional [[block state]]s to <code>false</code>), glow lichen now renders as if attached to all sides and no longer emits light.
=== Mobs ===
; [[Goat]]s
* Mobs rammed by goats no longer retaliate.
; [[Axolotl]]s and [[glow squid]]s
* Now only spawn in total darkness and where there's a block with <code>base_stone_overworld</code> [[tag]] (i.e. stone, deepslate, andesite, diorite, granite or tuff) less than 5 blocks below the spawning space.
=== Gameplay ===
; [[Advancement]]s
* Changed the description of the advancement "Wax On" from "Apply Wax to a Copper block!" to "Apply Honeycomb to a Copper block!".
== Fixes ==
{{fixes|fixedin=1.17 Pre-release 3
|;old
|85967|Vines placed without a support block using {{cmd|setblock}} cannot be interacted with.
|171229|Loading animation not displaying correctly after optimizing world.
|223227|Floating water caves in caves under the ocean.
|225077|Vines can spread upward to non-full blocks.
|;dev
|203773|Lightning rod is floating when held in third-person.
|215946|Game fatally crashed while exploring chunks (<code>IllegalStateException: Accessing PalettedContainer from multiple threads</code>).
|222223|Baby axolotls despawn.
|223146|Endermen don't render vines when held anymore.
|223147|Vines aren't rendered with {{cmd|/setblock}}.
|225344|Cave generation seems to be broken at seemingly random chunk borders.
|226441|Lit candle texture doesn't change when on cake.
|226514|Crash trying to start a world: <code>Error: java.lang.NullPointerException: Cannot read field "u" because "☃" is null</code>.
|226660|"Double closing program" warnings upon closing the game.
|226874|Player's owned <code>player_head</code> on mobs are flashing.
|;previous
|226956|Gravity blocks do not break when <code>doEntityDrops</code> is set to false.
|226970|Stars are occluded by render fog.
|227018|Changing or reloading resource packs does not reload core shaders until reloading a second time.
}}</onlyinclude>
== Video ==
{{slicedlime|mRa5kSK_HX8|dx6yWFzP4MY}}
== Notes ==
{{Notelist}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.17-pre3]]
[[es:Java Edition 1.17 Pre-release 3]]
[[fr:Édition Java 1.17 Pre-release 3]]
[[ja:Java Edition 1.17 Pre-release 3]]
[[pt:Edição Java 1.17 Pre-release 3]]
[[ru:1.17 Pre-release 3 (Java Edition)]]
[[th:รุ่น Java 1.17 Pre-release 3]]
[[zh:Java版1.17-pre3]]

54
wiki_backup/1.17-rc2.txt Normal file
View file

@ -0,0 +1,54 @@
{{Infobox version
|title=Minecraft 1.17 Release Candidate 2
|image=1.17-rc1.jpg
|image2=Java Edition 1.17 Release Candidate 2.png
|edition=Java
|type=Release candidate
|date=June 7, 2021
|jsonhash=51b6bbfd9d4e7ab4066231fd04a3898d46128618 |jsonfile=1.17-rc2
|clienthash=fe88ac6c8a0bedc9a48e5c9b48eb0f4dc24ccc79
|clientmap=cb05fa784d1c99357cc5702a9df4daaf6ed58b9b
|serverhash=1b6e0511e1e419fdcf5a81e53e36b5558032ee79
|servermap=4a643e9c4b7b607da9c93f3f8a81d87a08b9ac34
|otherdl={{dl|622bf0fd298e1e164ecd05d866045ed5941283cf|custom|name=CavesAndCliffsPreview.zip|title=Data pack}}<ref group=note>Re-enables features set to release for [[Java Edition 1.18|1.18]].</ref>
|parent=1.17
|prevparent=1.16.5
|prev=1.17 Release Candidate 1
|nextparent=1.17
}}<onlyinclude>
'''1.17 Release Candidate 2''' (known as '''1.17-rc2''' in the [[launcher]]) is the second and final release candidate for [[Java Edition 1.17]], released on June 7, 2021,<ref>{{Mcnet|minecraft-1-17-release-candidate-1|Minecraft 1.17 Release Candidate 2|June 7, 2021}}</ref> which fixes bugs and crashes.
== Changes ==
* Authlib was updated from 2.2.30 to 2.3.31.
* Legacy skin handling now has improved skin validation.
* The spawn egg dispenser behavior now catches any exceptions that could be thrown when spawning the entity.
== Fixes ==
{{fixes|fixedin=1.17 Release Candidate 2|otherissuescount=2|showdesc=1}}
; Other
* 2 private issues were fixed.<ref>https://www.reddit.com/r/Minecraft/comments/nub794/a_new_challenger_arrives_minecraft_117_release/h0wlnsc</ref></onlyinclude>
== Video ==
{{slicedlime|TnT2ZLS8ST0}}
== Trivia ==
* This is the first time a major release has two release candidates since [[Java Edition 1.0.0|1.0.0]], as release candidates only began to be used again during development for [[Java Edition 1.16|1.16]].
== Notes ==
{{Notelist}}
== References ==
{{reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.17-rc2]]
[[es:Java Edition 1.17 Release Candidate 2]]
[[fr:Édition Java 1.17 Release Candidate 2]]
[[ja:Java Edition 1.17 Release Candidate 2]]
[[pt:Edição Java 1.17 Release Candidate 2]]
[[ru:1.17 Release Candidate 2 (Java Edition)]]
[[th:รุ่น Java 1.17 Release Candidate 2]]
[[zh:Java版1.17-rc2]]

114
wiki_backup/1.17.1-pre1.txt Normal file
View file

@ -0,0 +1,114 @@
{{Infobox version
|title=Minecraft 1.17.1 Pre-release 1
|image=1.17.1-pre1.jpg
|image2=Java Edition 1.17.1 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=June 18, 2021
|jsonhash=fc7ab9a2061ee1d2d02e0b2cf3fdd5b0cb9f9770 |jsonfile=1.17.1-pre1
|clienthash=e2379ea3e1ff2ad1ab566e7fad78ce39eff3781f
|clientmap=cd9dd46791ba48dc872d91b1e405dcc9dc542e85
|serverhash=42dfafdd31a1e6edfe59c79ea0e109fede1c8071
|servermap=27b8583a59c3803db3155640257e83d5138c9b11
|otherdl={{dl|622bf0fd298e1e164ecd05d866045ed5941283cf|custom|name=CavesAndCliffsPreview.zip|title=Data pack}}<ref group=note>Re-enables features set to release for [[Java Edition 1.18|1.18]].</ref>
|parent=1.17.1
|prevparent=1.17
|prev=
|next=1.17.1 Pre-release 2
|nextparent=1.17.1
}}<onlyinclude>
'''1.17.1 Pre-release 1''' (known as '''1.17.1-pre1''' in the launcher) is the first pre-release for [[Java Edition 1.17.1]], released on June 18, 2021,<ref>{{Mcnet|minecraft-1-17-1-pre-release-1|Minecraft 1.17.1 Pre-Release 1|June 18, 2021}}</ref> which tweaks some game mechanics and fixes bugs.
== Changes ==
=== Blocks ===
; [[Cauldron]]s
* [[Powder snow]] now fills cauldrons twice as fast as before.
=== Items ===
; [[Spyglass]]
* Tweaked held model texture to include glass on the backside.
=== Mobs ===
; [[Axolotl]]
* Blue axolotls now only spawn through [[breeding]].
; [[Drowned]]
* Increased the drop probability of [[copper ingot]] from 5% to 11%, and increased the drop rate boost with each level of the [[Looting]] enchantment from 1% to 2%.
** This change is to match {{BE}}'s drop rates.
; [[Goat]]s
* Breeding common goats now has a chance to produce screaming goats.
* Status effects applied to goats now also apply when the goat is jumping or ramming.
; [[Zombie]]s, [[zombie villager]]s, [[husk]]s and [[drowned]]
* No longer pick up [[glow ink sac]]s.
** This prevents zombies from persisting after picking up the loot of a dead [[glow squid]].
=== General ===
; Protocol
* Handshake packet padding method for "hostname" and "port" field has reverted to pre-1.17 when the server address which used is a SRV record.
** Now, data padded in these field will use the address and port which SRV record pointed at, instead of using "server address" as "hostname" and 25565 as "port".
; Fonts
* Some new characters have been added.
** Includes several currency symbols and some new emoji.
** The new characters are: <span style="word-break:break-all;">₺✂🍖🪣🔔⏳⚑₠₡₢₣₤₥₦₩₫₭₮₰₱₲₳₵₶₷₸₹₺₻₼₿</span>
== Fixes ==
{{fixes|fixedin=1.17.1 Pre-release 1|otherissuescount=1
|;From released versions before 1.17
|123654|Sun, moon, and/or clouds are not showing if render distance is below 4.
|131290|Enchantments are saved as shorts, but are loaded as and function with integer values.
|156155|Turkish lira sign (<code>₺</code>) appears as <code>□</code> in the game.
|156977|When TNT is powered at the moment it's pushed, it creates a ghost block.
|194736|Duplicate text mapping for <code>U+00B7</code>.
|196999|<code>U+1FEC</code> is wrong in Minecraft's font.
|223350|Loaded chunks sometimes don't render until the player moves their head slightly.
|;From 1.17
|213986|Pistons and dispensers can be used to create ghost blocks using powder snow.
|219018|Ghost items can be created using {{cmd|item}} (server doesn't update client inventory correctly).
|223368|Strength and weakness potions / custom attack damage attributes does not change damage from goats.
|225816|Hanging roots appear large when an item entity.
|226461|Logs can be replaced with stone near lava pools.
|226505|Goat's long jump is not affected by the jump boost effect.
|226512|Goats do not use the damage of held items when ramming entities.
|226948|Withers are now affected by potion effects.
|227387|World gen datapacks will likely crash or softlock the game.
|227435|Lag when placing heads of non-existent players when on servers.
|227483|<code>root_system</code> feature config's codec uses a wrong field.
|227520|Overworld Fossils always generate at bedrock level.
|227557|End portal texture appears stretched after world conversion.
|227618|Small dripleaf is consumed without being placed when used on tall seagrass.
|227651|Group for lapis lazuli ore smelting and blasting recipes is misspelled.
|227821|Client crash when trying to create/edit realm immediately after deleting previous one.
|227891|Ender pearls despawn when a player logs out of a server.
|228219|Thrown ender pearls disappear upon entering the exit end portal.
|228343|<code>java.lang.NullPointerException</code> when <code>random_selector</code> default feature isn't found.
|228430|Very long loading pause while booting the game ("Failed to add PDH Counter", caused by oshi).
|228828|Specifying the <code>--server</code> parameter when starting the game, causes the game to crash.
|229299|Blue axolotls can spawn naturally.
}}
; Other
* Duplication exploit with anvils.</onlyinclude>
== Video ==
{{Slicedlime|luiXJWr83fw|-TSbHHZNX-g}}
== References ==
{{Reflist}}
== Notes ==
{{Notelist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.17.1-pre1]]
[[es:Java Edition 1.17.1 Pre-release 1]]
[[fr:Édition Java 1.17.1 Pre-release 1]]
[[ja:Java Edition 1.17.1 Pre-release 1]]
[[pt:Edição Java 1.17.1 Pre-release 1]]
[[ru:1.17.1 Pre-release 1 (Java Edition)]]
[[th:รุ่น Java 1.17.1 Pre-release 1]]
[[zh:Java版1.17.1-pre1]]

View file

@ -0,0 +1,75 @@
{{Infobox version
|title=Minecraft 1.17.1 Pre-release 2
|image=1.17.1-pre2.jpg
|image2=Java Edition 1.17.1 Pre-release 2.png
|edition=Java
|type=Pre-release
|date=June 29, 2021
|jsonhash=badb8ad3adc431e89f6de496b4cb8595beb522d1 |jsonfile=1.17.1-pre2
|clienthash=6edfbe953993a45d3f7c845a5b4e97492f2e8f85
|clientmap=ebbb1b7c4ec6a7103a01168cb4362a13db5bdc17
|serverhash=e01e495461ecb834bb6a242bfea608af4f22b955
|servermap=d99adc311dd0d2ef519840186eadd0e7461e333b
|otherdl={{dl|622bf0fd298e1e164ecd05d866045ed5941283cf|custom|name=CavesAndCliffsPreview.zip|title=Data pack}}<ref group=note>Re-enables features set to release for [[Java Edition 1.18|1.18]].</ref>
|parent=1.17.1
|prevparent=1.17
|prev=1.17.1 Pre-release 1
|next=1.17.1 Pre-release 3
|nextparent=1.17.1
}}<onlyinclude>
'''1.17.1 Pre-release 2''' (known as '''1.17.1-pre2''' in the launcher) is the second pre-release for [[Java Edition 1.17.1]], released on June 29, 2021,<ref>{{Mcnet|minecraft-1-17-1-pre-release-2|Minecraft 1.17.1 Pre-Release 2|June 29, 2021}}</ref> which adds the feature for the logging of named mobs' deaths and fixes bugs.
== Additions ==
=== General ===
; [[Language]]s
* Added [[wikipedia:Classical Chinese|Classical Chinese]].<ref group=note>Also available for versions since [[19w34a]].</ref>
== Changes ==
=== General ===
; Languages
* Removed the following languages due to incomplete translations:
** East Allgovian German<ref group=note>Also removed from 1.15's assets.</ref>
** Manx
** Sicilian<ref group=note>Also removed from 1.15's and 1.16's assets.</ref>
; Logging
* Deaths of named mobs are now logged.
== Fixes ==
{{fixes|fixedin=1.17.1 Pre-release 2
|;From 1.17
|219290|Calcite is too quiet compared to other blocks.
|221656|Creative mode obtained bucket of axolotl/tropical fish only spawns one kind axolotl/tropical fish.
|226926|Emerald ore generates too often.
|228599|Attempting to walk through flowing water constantly switches the player from swimming into normal mode.
|229191|Diamond ore distribution changed between 1.16.5 and 1.17.
|229441|You can steal the item a villager is holding for trade by killing it.
|229614|Wandering Trader obtained tropical fish are only white kob.
|;previous
|229983|{{cmd|clear}} command doesn't clear certain stacks after dropping items from them.
}}</onlyinclude>
== Video ==
{{Slicedlime|7Lh-1eQKOHA}}
== Trivia ==
* Despite MC-221656 being marked as fixed, [[axolotl]]s spawned from buckets obtained in creative inventory still only spawn as pink.
== Notes ==
{{Notelist}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.17.1-pre2]]
[[es:Java Edition 1.17.1 Pre-release 2]]
[[fr:Édition Java 1.17.1 Pre-release 2]]
[[ja:Java Edition 1.17.1 Pre-release 2]]
[[pt:Edição Java 1.17.1 Pre-release 2]]
[[ru:1.17.1 Pre-release 2 (Java Edition)]]
[[th:รุ่น Java 1.17.1 Pre-release 2]]
[[zh:Java版1.17.1-pre2]]

View file

@ -0,0 +1,58 @@
{{Infobox version
|title=Minecraft 1.17.1 Release Candidate 1
|image=1.17.1-rc1.jpg
|image2=Java Edition 1.17.1 Release Candidate 1.png
|edition=Java
|type=Release candidate
|date=July 1, 2021
|jsonhash=7fabe4abc96d0ed905db327d6cc75976398a8969 |jsonfile=1.17.1-rc1
|clienthash=40595d7eeeebc212f6e2b8b5a3dbfc5377cfef9b
|clientmap=13cad5bd600c9ebc8ebe1038b432053e4c81fb9e
|serverhash=b93cbcf6c65b92621d67b735e8610f7682f54694
|servermap=6839be84674e31281fa4539741e7eaab7723524a
|otherdl={{dl|622bf0fd298e1e164ecd05d866045ed5941283cf|custom|name=CavesAndCliffsPreview.zip|title=Data pack}}<ref group=note>Re-enables features set to release for [[Java Edition 1.18|1.18]].</ref>
|parent=1.17.1
|prevparent=1.17
|prev=1.17.1 Pre-release 3
|next=1.17.1 Release Candidate 2
|nextparent=1.17.1
}}<onlyinclude>
'''1.17.1 Release Candidate 1''' (known as '''1.17.1-rc1''' in the [[launcher]]) is the first release candidate for [[Java Edition 1.17.1]], released on July 1, 2021, which fixes bugs and crashes.<ref>{{Mcnet|minecraft-1-17-1-release-candidate-1|Minecraft 1.17.1 Release Candidate 1|July 1, 2021}}</ref>
== Additions ==
=== General ===
; [[Death messages]]
* Two previously untranslated death messages for some underwater mobs have been given messages:
** <code><Name> died from dehydration</code>;
** <code><Name> died from dehydration whilst trying to escape <Name></code>.
== Fixes ==
{{Fixes|fixedin=1.17.1 Release Candidate 1|otherissuescount=1
|;From 1.17
|230716|<code>death.attack.dryout</code> and <code>death.attack.dryout.player</code> display raw translation strings (are untranslated).
}}
; Other
* Fixed crashes.</onlyinclude>
== Video ==
{{Slicedlime|3EvlJLdoZYI}}
== Notes ==
{{Notelist}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.17.1-rc1]]
[[es:Java Edition 1.17.1 Release Candidate 1]]
[[fr:Édition Java 1.17.1 Release Candidate 1]]
[[ja:Java Edition 1.17.1 Release Candidate 1]]
[[lzh:爪哇版一點一七點一之候一]]
[[pt:Edição Java 1.17.1 Release Candidate 1]]
[[ru:1.17.1 Release Candidate 1 (Java Edition)]]
[[th:รุ่น Java 1.17.1 Release Candidate 1]]
[[zh:Java版1.17.1-rc1]]

View file

@ -0,0 +1,50 @@
{{Infobox version
|title=Minecraft 1.17.1 Release Candidate 2
|image=1.17.1-rc1.jpg
|image2=Java Edition 1.17.1 Release Candidate 2.png
|edition=Java
|type=Release candidate
|date=July 5, 2021
|jsonhash=f4fc06b4001baaf2383ba5efc6648867d539c65c |jsonfile=1.17.1-rc2
|clienthash=132b56af0236e9877261325b67d1606d126463ae
|clientmap=38c2dcaf1ea2ed18611daed122c54ac7ad2ec9be
|serverhash=dd9ca1bdc855535cd7ce0565f02285ad4d6d1ae5
|servermap=20e3df62c8698434fb626e715d899e93865b9785
|otherdl={{dl|622bf0fd298e1e164ecd05d866045ed5941283cf|custom|name=CavesAndCliffsPreview.zip|title=Data pack}}<ref group=note>Re-enables features set to release for [[Java Edition 1.18|1.18]].</ref>
|parent=1.17.1
|prevparent=1.17
|prev=1.17.1 Release Candidate 1
|next=
|nextparent=1.17.1
}}<onlyinclude>
'''1.17.1 Release Candidate 2''' (known as '''1.17.1-rc2''' in the [[launcher]]) is the second and the final release candidate for [[Java Edition 1.17.1]], released on July 5, 2021, which fixes some critical issues.<ref>{{Mcnet|minecraft-1-17-1-release-candidate-1|Minecraft 1.17.1 Release Candidate 2|July 5, 2021}}</ref>
== Fixes ==
{{fixes|fixedin=1.17.1 Release Candidate 2|otherissuescount=2}}
; Private issues
* A private issue was fixed.
; Other
* Fixed some critical issues.</onlyinclude>
== Video ==
{{Slicedlime|QpA__HRm-L8}}
== Notes ==
{{Notelist}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.17.1-rc2]]
[[es:Java Edition 1.17.1 Release Candidate 2]]
[[fr:Édition Java 1.17.1 Release Candidate 2]]
[[it:Java Edition 1.17.1 Release Candidate 2]]
[[ja:Java Edition 1.17.1 Release Candidate 2]]
[[pt:Edição Java 1.17.1 Release Candidate 2]]
[[ru:1.17.1 Release Candidate 2 (Java Edition)]]
[[th:รุ่น Java 1.17.1 Release Candidate 2]]
[[zh:Java版1.17.1-rc2]]

View file

@ -0,0 +1,113 @@
{{Infobox version
|title=Minecraft 1.18 experimental snapshot 2
|image=1.18 Experimental Snapshot 1 banner.jpg
|image2=1.18 experimental snapshot 2 reddit.png
|image3=Java Edition 1.18 experimental snapshot 2 menu.png
|edition=Java
|type=Experimental snapshot
|date=July 20, 2021
|jsondl={{dl|0adfe4f321aa45248fc88ac888bed5556633e7fb|custom|name=1_18_experimental-snapshot-2.zip|title=.json}}{{fn|Unzip this file in the <samp>[[.minecraft]]/versions</samp> folder.}}
|clienthash=1108159d2734fda202c782ff08e74bf1e399bad4
|clientmap=e40574bb0e42a3a2e9fd486db7f7dcd5e5d0c165
|serverhash=9fa3fd2939f9785bafc6a0a3507c3c967fbeafed
|servermap=dde78de8bc0937fa8324efd62d78244febd431e9
|parent=1.18
|prevparent=1.17.1
|prev=1.18 Experimental Snapshot 1
|next=1.18 experimental snapshot 3
|nextparent=1.18
}}<onlyinclude>
'''1.18 experimental snapshot 2''' (known as '''1_18_experimental-snapshot-2''' in the launcher) is the second experimental snapshot for [[Java Edition 1.18]], released on July 20, 2021,<ref>{{Mcnet|new-world-generation-java-available-testing|New world generation in Java available for testing|July 20, 2021|Henrik Kniberg}}</ref><ref>{{reddit|oo3pvy/minecraft_118_experimental_snapshot_2_is_out||Minecraft 1.18 experimental snapshot 2 is out!|MrHenrik2|July 20, 2021}}</ref> which makes numerous changes to world generation and mob spawning functionality related to [[monster spawner]]s.
== Additions ==
[[File:Snapshot 1 Map.png|thumb|256px|A map of biome placement in the first snapshot.]]
[[File:Snapshot 2 Map.png|thumb|256px|A map of biome placement in this snaphot.]]
=== General ===
; [[NBT format]]
* Spawners now have a new {{nbt|compound|CustomeSpawnRules}}{{sic}} tag, which lets players override the spawn rules of the spawned mob.
** In the tag, players can specify {{nbt|int|BlockLightLimit}}, which indicates the highest block-light the spawner spawns mobs at.
== Changes ==
=== Mobs ===
; General
* [[Zombie]], [[skeleton]], [[spider]], and [[cave spider]] spawners now spawn mobs up to block-light level 11.
=== World generation ===
; [[Beach]]es
* Beaches are generally wider.
** In some places there is a chance where no beaches generate at all, to provide some variation.
; [[Extreme hills]]
* Renamed mountains to extreme hills, and gravelly mountains to gravelly hills.
; [[Mountains]]
* Sheep now spawn in meadows.
* Rabbits now spawn more frequently in meadows.
* Donkeys now spawn less frequently in meadows.
* Blue orchid no longer spawns in meadows.
* Meadows sometimes spawn a lone oak or birch, often with a bee nest.
* Hostile mobs now spawn in the new mountain biomes.
* Infested stone now generate in the new mountain biomes.
; [[Ore]] distribution
* Emerald ores now generate in the new mountain biomes.
; [[Ore vein]]s
* Made ore veins slightly larger and more frequent.
; [[Biome]]s
* Re-added [[ice spikes]], [[eroded badlands]] and [[savanna plateau]].
; [[Swamp]]
* Swamps now generate properly.
; [[Lush caves]]
* Are now slightly smaller and slightly less common.
; General
* Biome placement is a bit smoother and less noisy. Fewer microbiomes dotting the terrain. Biomes tend to be a bit larger and less fragmented.
* Underground biomes interfere less with surface biomes. They can still leak out of cave entrances sometimes.
* Increased the height of some of the peaks.
** Now can rarely reach up to Y=260.
* Slightly increased the chance of finding large areas with flat terrain.
* Structures now mostly show up in the right biomes.
* Toned down the megacave entrances a little bit, and made them less likely to go all the way down to deepslate level.
* Made cheese caves a little bit smaller on average, and a bit less likely to intersect the surface.
* Reduced the chance of sand and gravel being placed in such a way that they immediately fall down on generation.
** Some are now replaced with sandstone or stone.
=== General ===
; [[Cloud]]s
* Raised cloud level from 128 to 192.</onlyinclude>
== Issues ==
This version is not supported on the bug tracker, and therefore issues affecting it will be resolved as "Invalid".<ref>{{bug|MC-231984}}</ref>
== Gallery ==
<gallery>
Experimental Biome Comparison 1.jpg|
Experimental Biome Comparison 2.jpg|
</gallery>
== Video ==
{{Slicedlime|LQnnZbpckdE}}
== Notes ==
{{Fnlist}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-es2]]
[[es:Java Edition 1.18 experimental snapshot 2]]
[[fr:Édition Java 1.18 Experimental Snapshot 2]]
[[ja:Java Edition 1.18 experimental snapshot 2]]
[[pt:Edição Java 1.18 experimental snapshot 2]]
[[ru:1.18 experimental snapshot 2 (Java Edition)]]
[[th:รุ่น Java 1.18 experimental snapshot 2]]
[[zh:Java版1.18-exp2]]

View file

@ -0,0 +1,107 @@
{{Infobox version
|title=Minecraft 1.18 experimental snapshot 3
|image=1.18 Experimental Snapshot 1 banner.jpg
|image2=1.18 experimental snapshot 3 reddit.png
|image3=Java Edition 1.18 experimental snapshot 3 menu.png
|edition=Java
|type=Experimental snapshot
|date=August 10, 2021
|jsondl={{dl|846648ff9fe60310d584061261de43010e5c722b|custom|name=1_18_experimental-snapshot-3.zip|title=.json}}{{fn|Unzip this file in the <samp>[[.minecraft]]/versions</samp> folder.}}
|clienthash=7d7acdf4165867cd7334bfa5f3f00af742c5ce16
|clientmap=6685e6de966b4970d947302f55376913454cf512
|serverhash=cbe106c19f5072222ce54039aa665a8aaf97097d
|servermap=7751261f6f27641bd605b579bc00598fc4afd556
|parent=1.18
|prevparent=1.17.1
|prev=1.18 experimental snapshot 2
|next=1.18 experimental snapshot 4
|nextparent=1.18
}}<onlyinclude>
'''1.18 experimental snapshot 3''' is the third experimental snapshot for [[Java Edition 1.18]], released on August 10, 2021,<ref>{{Mcnet|new-world-generation-java-available-testing|New world generation in Java available for testing|August 10, 2021|Henrik Kniberg}}</ref><ref>{{reddit|p1pc9d/minecraft_118_experimental_snapshot_3_is_out||Minecraft 1.18 experimental snapshot 3 is out!|MrHenrik2|August 10, 2021}}</ref> which makes numerous changes to world generation and fixes bugs from previous experimental snapshots.
== Additions ==
=== World generation ===
; {{BiomeLink|Stony Peaks}}
* A new mountains biome that is a variant of lofty/snowcapped peaks that uses stone and strips of gravel, instead of snow and ice.
** Is used to avoid temperature clashes.
== Changes ==
=== Mobs ===
; General
* Mob spawning is now consistent throughout all [[altitude]]s increasing spawn rates in higher altitudes and decreasing spawn rates in lower altitudes.
** The spawning rates are similar to [[Java Edition 1.17|1.17]]'s spawning rate at y=64.
=== World generation ===
; [[Aquifer]]s
* Aquifers can go deeper and are more likely to connect with cave systems further down.
* Added more high-frequency variation to aquifers, to reduce the risk of massively huge areas with waterfilled caves everywhere.
** Underground lakes and flooded regions are more likely to be spread out instead of concentrated in one region.
; [[Badlands]]
* Tweaked badlands so they sometimes show up in flat areas next to plateaus, and made the red sand generate higher up (to account for the generally higher terrain).
* Eroded badlands no longer create floating pillars on top of the water surface.
; [[Biome]]s
* Tweaked biome placement to reduce the chance of temperature clashes.
* Tweaked biome placement to allow for more noisiness and diversity.
** This allows for the reintroduction of microbiomes.
; [[Beach]]es
* Tweaked beaches a bit, to make them more inclined to show up on flat coastlines rather than hilly areas.
* Reduced the amount of stone shores.
; [[Desert temple]]s
* Desert temples spawn on the surface rather than at a fixed y-level.
; [[Mountains]]
* Made peak biomes and meadows less likely to generate in flat low elevation areas.
* Snowy slopes and snowcapped peaks no longer place dirt under the snow.
; [[Pillager outpost]]s
* Now generate in all the new mountain biomes.
; [[Swamp]]s
* Swamps are less likely to overlap cold or dry biomes, and they no longer place hanging water.
; [[Village]]s
* Now generate in [[meadow]]s.
; General
* Smoothed out the cliffs in shattered terrain a bit.
* Coastlines and river banks are less likely to be intersected by aquifers.
** Local water levels are mostly used in terrain that doesn't border a river or ocean.
** Cave openings and ravines that intersect an ocean or river mostly use sea level.
* Inland low-elevation areas are less likely to have flooded caves everywhere.
* Grass no longer generates underwater.
* Reduced the chance of incorrect surface placement.
* Reduced the chance of river biome generating in dry mountain gorges.
== Fixes ==
* Fixed goats not spawning in the new mountain biomes.
* Fixed an issue where players in multiplayer can face far more or far fewer enemies than intended, particularly when other players are flying.
* {{bug|MC-30560}} was fixed by this version, although it was not marked as such due to the bug tracker not handling experimental snapshots.</onlyinclude>
== Issues ==
This version is not supported on the bug tracker, and therefore issues affecting it will be resolved as "Invalid".<ref>{{bug|MC-231984}}</ref>
== Video ==
{{Slicedlime|vQJjLrk07fM}}
== Notes ==
{{Fnlist}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-es3]]
[[es:Java Edition 1.18 experimental snapshot 3]]
[[fr:Édition Java 1.18 Experimental Snapshot 3]]
[[ja:Java Edition 1.18 experimental snapshot 3]]
[[pt:Edição Java 1.18 experimental snapshot 3]]
[[ru:1.18 experimental snapshot 3 (Java Edition)]]
[[th:รุ่น Java 1.18 experimental snapshot 3]]
[[zh:Java版1.18-exp3]]

View file

@ -0,0 +1,93 @@
{{Infobox version
|title=Minecraft 1.18 experimental snapshot 4
|image=1.18 Experimental Snapshot 1 banner.jpg
|image2=1.18 experimental snapshot 4 reddit.png
|image3=Java Edition 1.18 experimental snapshot 4 menu.png
|edition=Java
|type=Experimental snapshot
|date=August 17, 2021
|jsondl={{dl|b92a360cbae2eb896a62964ad8c06c3493b6c390|custom|name=1_18_experimental-snapshot-4.zip|title=.json}}{{fn|Unzip this file in the <samp>[[.minecraft]]/versions</samp> folder.}}
|clienthash=f52d527002d3678da1c9e63aae0200a1063ec184
|clientmap=50788601a528da2f35483f6852302ec085a05c65
|serverhash=ac942062c6b0bf5da61ed2c7b701a13a01462c63
|servermap=38bae2e9a3f7bd315a383eb3c388c994385be14c
|parent=1.18
|prevparent=1.17.1
|prev=1.18 experimental snapshot 3
|next=1.18 experimental snapshot 5
|nextparent=1.18
}}<onlyinclude>
'''1.18 experimental snapshot 4''' is the fourth experimental snapshot for [[Java Edition 1.18]], released on August 17, 2021,<ref>{{Mcnet|new-world-generation-java-available-testing|New world generation in Java available for testing|August 17, 2021|Henrik Kniberg}}</ref><ref>{{reddit|p67u6p/minecraft_118_experimental_snapshot_4_is_out||Minecraft 1.18 experimental snapshot 4 is out!|MrHenrik2|August 17, 2021}}</ref> which makes numerous changes and tweaks to world generation.
== Changes ==
[[File:Badlands Dry River.jpg|thumb|256px|A dry river.]]
[[File:Badlands Saddle Valley.jpg|thumb|256px|A saddle valley.]]
=== World generation ===
; [[Badlands]]
* Now is larger and less likely to show up as microbiome splotches.
* [[Terracotta]] bands now go higher.
* Wooded badlands grass and trees now start higher.
; [[Biome]]s
* Tweaked biome placement in general to reduce the risk of harsh collisions.
* Now biome placement is a bit smoother and less noisy. This should result in fewer microbiomes.
* Removed surface freezing for hot biomes, and raised the altitude at which snow layers are placed.
; [[Desert]]
* Now is larger and less likely to show up as microbiome splotches.
* Desert pyramids now tend to be partially buried and no longer generate on water.
; [[Extreme hills]]
* The terrain is now more extreme. Fiddled with the placement of shattered terrain and extreme hills in general to make it fit in with the terrain better.
; [[Jungle pyramid]]s
* No longer generate on [[water]].
; Ore distribution
* Reduced the number of diorite/andesite/granite blobs on the surface.
* [[Copper ore]] blobs now are bigger in dripstone caves.
* More iron is generated.
; [[River]]s
* Reduced the likelihood of rivers being cut off and turning into steep dry river gorges in mountainous terrain.
* Rivers tend to either carve a fjord through the mountain range, or raise the terrain to form a saddle valley between the peaks.
; [[Snowy slopes]]
* Now have fewer dirt blocks.
; [[Stone shore]]s
* Sometimes generate layers (strips) of [[gravel]], [[diorite]], [[andesite]], or [[granite]].
; [[Stony peaks]]
* Sometimes generate layers (strips) of [[calcite]], [[andesite]], [[granite]], or [[gravel]].
; [[Swamp]]s
* Tweaked swamp placement a bit.
* Are less likely to extend far out from the coastline.
* Rivers in swamps now tend to be shallower.</onlyinclude>
== Issues ==
This version is not supported on the bug tracker, and therefore issues affecting it will be resolved as "Invalid".<ref>{{bug|MC-231984}}</ref>
== Video ==
{{Slicedlime|zzFgC43D9yI}}
== Notes ==
{{Fnlist}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-es4]]
[[es:Java Edition 1.18 experimental snapshot 4]]
[[fr:Édition Java 1.18 Experimental Snapshot 4]]
[[ja:Java Edition 1.18 experimental snapshot 4]]
[[pt:Edição Java 1.18 experimental snapshot 4]]
[[ru:1.18 experimental snapshot 4 (Java Edition)]]
[[th:รุ่น Java 1.18 experimental snapshot 4]]
[[zh:Java版1.18-exp4]]

View file

@ -0,0 +1,74 @@
{{Infobox version
|title=Minecraft 1.18 experimental snapshot 7
|image=1.18 Experimental Snapshot 1 banner.jpg
|image2=1.18 experimental snapshot 7 reddit.png
|image3=Java Edition 1.18 experimental snapshot 7 menu.png
|edition=Java
|type=Experimental snapshot
|date=September 8, 2021
|jsondl={{dl|ab4ecebb133f56dd4c4c4c3257f030a947ddea84|custom|name=1_18_experimental-snapshot-7.zip|title=.json}}{{fn|Unzip this file in the <samp>[[.minecraft]]/versions</samp> folder.}}
|clienthash=744c5dd5480cea91b5ed5e29b06aad08a3f6f982
|clientmap=076329c73e01c93fd9bd9c1092b78ef02950abd8
|serverhash=965974baf3de259cda0306c29e20860d74b4a297
|servermap=e27634f15d4a94762f7784a9e71ec521517ef572
|parent=1.18
|prevparent=1.17.1
|prev=1.18 experimental snapshot 6
|next=21w37a
|nextparent=1.18
}}<onlyinclude>
'''1.18 experimental snapshot 7''' is the seventh and final experimental snapshot for [[Java Edition 1.18]], released on September 8, 2021,<ref>{{Mcnet|new-world-generation-java-available-testing|New world generation in Java available for testing|September 8, 2021|Henrik Kniberg}}</ref><ref>{{reddit|pkalqg/minecraft_118_experimental_snapshot_7_is_out||Minecraft 1.18 experimental snapshot 7 is out!|MrHenrik2|September 8, 2021}}</ref> which introduces changes to terrain generation and tweaks to elytra due to various server chunk loading issues.
== Changes ==
=== Items ===
; [[Elytra]]
* No longer take durability damage when gliding, only when boosting with [[firework rocket]]s.
* Decreased the firework rocket boost on an elytra from 30 blocks per second to 26 blocks per second.
* Now break when the item reaches 0 durability.
=== World generation ===
; [[Cave]]s
* Noodle caves are no longer capped at Y=130, allowing cave openings and cracks in mountain peaks.
; General
* Slightly smoothened the terrain by lowering the noise.</onlyinclude>
== Video ==
{{Slicedlime|_Nw2Q2Ptmm4}}
== Issues ==
This version is not supported on the bug tracker, and therefore issues affecting it will be resolved as "Invalid".<ref>{{bug|MC-231984}}</ref>
== Gallery ==
<gallery>
1.18 experimental snapshot 7 mountain opening.png|A mountain with a noodle cave opening above y 130
Experimental Mountain 1.jpg|
Experimental Mountain 2.jpg|
Experimental Mesa 1.jpg|
Experimental Mesa 2.jpg|
Empty Hills.jpg|
Frozen Ocean Spawn.jpg|
Experimental Flowers 1.jpg|
Experimental Flowers 2.jpg|
</gallery>
== Notes ==
{{Fnlist}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-es7]]
[[es:Java Edition 1.18 experimental snapshot 7]]
[[fr:Édition Java 1.18 Experimental Snapshot 7]]
[[it:Java Edition 1.18 experimental snapshot 7]]
[[ja:Java Edition 1.18 experimental snapshot 7]]
[[lzh:爪哇版一點一八之試七]]
[[pt:Edição Java 1.18 experimental snapshot 7]]
[[ru:1.18 experimental snapshot 7 (Java Edition)]]
[[th:รุ่น Java 1.18 experimental snapshot 7]]
[[zh:Java版1.18-exp7]]

98
wiki_backup/1.18-pre2.txt Normal file
View file

@ -0,0 +1,98 @@
{{Infobox version
|title=Minecraft 1.18 Pre-release 2
|image=1.18-pre2.jpg
|image2=Java Edition 1.18 Pre-release 2.png
|edition=Java
|type=Pre-release
|date=November 16, 2021
|jsonhash=4b41cd8c3f89ad1a212e24e31a498c205ed7fdb1 |jsonfile=1.18-pre2
|clienthash=6b88f1734c80775f59416db3599c2a4333558ca4
|clientmap=05dd4363ea8e18e8f6eb57a43e1a6e01b3a651da
|serverhash=c203586f5d2c02b417f0e104b65a8e5e7625b2f8
|servermap=e1599803356325af029e806eb7db716c5047fc52
|parent=1.18
|prevparent=1.17.1
|prev=1.18 Pre-release 1
|next=1.18 Pre-release 3
|nextparent=1.18
}}<onlyinclude>
'''1.18 Pre-release 2''' (known as '''1.18-pre2''' in the launcher) is the second pre-release for [[Java Edition 1.18]], released on November 16, 2021,<ref>{{Mcnet|minecraft-1-18-pre-release-2|Minecraft 1.18 Pre-Release 2|November 16, 2021}}</ref> which increased the required minimum Java version from 16 to 17, and fixed bugs.
== Changes ==
=== General ===
; [[Splash]]es
* Changed "Now Java 16!" to "Java 16 + 1 = 17!".
; General
* The game now requires Java 17 instead of Java 16.
* When upgrading a world, new caves generate underneath the entire chunk, in all chunks that have any bedrock at height 0.
== Fixes ==
{{fixes|fixedin=1.18 Pre-release 2
|;old
|32813|Floating water / lava above caves / cave carver doesn't update water.
|206303|Minecarts have old textures on the bottom.
|217038|Large dripstone structures can be generated outside the caves.
|217056|Some high-speed particles lag/freeze the game.
|220061|Painting back texture is mirrored.
|223917|Goats on fire do not attempt to pathfind towards water.
|226689|Albert Pastore's name is grey and improperly indented in the credits.
|227163|Credits say "IT Manager" instead of "IT Managers".
|227204|"Explore, dream, discover" quote no longer appears after new credits.
|227206|Random names in the new credits use curly quotes/apostrophes.
|227231|Steven Silvester's name might be misspelt in the credits.
|227239|In the credits, Elizabeth Batson's company name is improperly capitalized.
|227329|The usage and punctuation of "Inc" is still inconsistent in the credits.
|231782|Missing "(" in Frank Criscione credit.
|237608|Server address shown when connection fails during server startup.
|;dev
|236756|Biome-exclusive mob spawn rates are reduced.
|236858|Seeds that spawn you in the middle of the ocean cause lag.
|237275|Game crashed when creating a single biome world with a custom biome / java.lang.NullPointerException: Cannot invoke "<code>bze.a()</code>" because the return value of "<code>bzg.a(int, int, int)</code>" is null.
|238049|Passive mobs (cows, pigs, sheep, chickens) sometimes do not spawn.
|238076|<code>UpgradeData</code> in chunk is not migrated to new world height.
|238375|Crash and/or data corruption upon attempting to save a world with a world border center over 30 million blocks.
|238587|Sprinting while flying into a block causes the screen to rapidly zoom in and out.
|239423|Kumi Tanioka isn't under "Music composed by" in the credits.
|239856|Upgrading old worlds causes vines to have the wrong block state.
|239857|Fences, iron bars, and glass panes often use an incorrect block state after conversion.
|239884|Water from old chunks don't properly propagate into new chunks.
|239899|Connected redstone does not properly upgrade from older versions.
|239994|Old worlds with non-bedrock blocks at 0,0,0 do not upgrade chunk column from 0,0,0 to 0,-64,0.
|240030|Infdev and Alpha holes in the world below Y{{=}}0 after conversion since 21w43a.
|240494|Duplicated mineshafts with new cave generation.
|240507|Mob Spawning in structures fails in pre-1.18 generated monuments/swamp huts/outposts.
|240570|Biomes in old chunks are not copied to new caves below Y{{=}}0 when chunks are extended.
|240610|"Allow Server Listings" option doesn't save its last setting.
|240783|Powder snow does not reduce or negate fall damage.
|241111|Some Mojang employees are not mentioned in the credits.
|;previous
|241191|Tripwires occasionally have incorrect block states after upgrading old worlds.
|241194|Crash: java.lang.NullPointerException: Cannot invoke "<code>ddm.a(cao, cps, java.util.Random, gh)</code>" because the return value of "<code>java.util.function.Supplier.get()</code>" is null.
|241199|Double chests have incorrect block states after upgrading old worlds.
|241204|Specific chunks reset each time world is loaded.
|241208|Powered buttons, pressure plates, and tripwire hooks remain powered forever after upgrading old worlds.
|241231|Floating campfire in a village.
|241234|Fossils get cut off at chunk borders.
|241413|Floating water generates around ravines.
}}</onlyinclude>
== Video ==
{{Slicedlime|d_G-GkunHbg|xeNiuwaQSiQ}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-pre2]]
[[es:Java Edition 1.18 Pre-release 2]]
[[fr:Édition Java 1.18 Pre-release 2]]
[[ja:Java Edition 1.18 Pre-release 2]]
[[lzh:爪哇版一點一八之預二]]
[[pt:Edição Java 1.18 Pre-release 2]]
[[ru:1.18 Pre-release 2 (Java Edition)]]
[[th:รุ่น Java 1.18 Pre-release 2]]
[[zh:Java版1.18-pre2]]

65
wiki_backup/1.18-pre3.txt Normal file
View file

@ -0,0 +1,65 @@
{{Infobox version
|title=Minecraft 1.18 Pre-release 3
|image=1.18-pre2.jpg
|image2=Java Edition 1.18 Pre-release 3.png
|edition=Java
|type=Pre-release
|date=November 17, 2021
|jsonhash=cf15721ba36c32ec3e8fb56da3a71b1da90ffeb8 |jsonfile=1.18-pre3
|clienthash=fe58c0cffa004dbb78c9a1cf30cc935d280a45b3
|clientmap=8fa21e752f7cf46beed5c5989793cb6c25bc5349
|serverhash=146d1809368fef552274122d9c380423c38068ab
|servermap=1c0712039f4637cc5febea736d5bd33a3767a271
|parent=1.18
|prevparent=1.17.1
|prev=1.18 Pre-release 2
|next=1.18 Pre-release 4
|nextparent=1.18
}}<onlyinclude>
'''1.18 Pre-release 3''' (known as '''1.18-pre3''' in the launcher) is the third pre-release for [[Java Edition 1.18]], released on November 17, 2021, <ref>{{Mcnet|minecraft-1-18-pre-release-2|Minecraft 1.18 Pre-Release 3|November 17, 2021}}</ref> which fixed bugs.
== Changes ==
=== General ===
; [[Server]]
* Starting <samp>server.jar</samp> with an empty <code>bundlerMainClass</code> will now just validate and extract files, then exit.
== Fixes ==
{{fixes|fixedin=1.18 Pre-release 3
|;old
|109260|Full-width punctuation characters are rendered incorrectly.
|132285|Isolated water block floating in mid-air.
|185263|Non full chunks in cache memory "semi-leak".
|223840|Lava blocks from "Lava Aquifers" don't get updated when a cave cuts through underneath them.
|240229|Rain and snow fall on the same blocks in a certain height range.
|;dev
|236740|Server-side lag spike sometimes occurs when attempting to locate a buried treasure or opening/breaking a chest containing a map.
|236764|Lighting lags behind world generation.
|239397|Lava pockets generate in icebergs.
|239610|Severe world corruption due to 1.18 snapshots failing to deserialize chunks that 1.17 loads fine.
|239682|Out of memory crash: World generation exhausts Java heap space.
|239950|Feature placement doesn't check for biomes, causing unnecessary lag.
|240483|Foxes that spawn in grove biomes aren't the snowy variant.
|240589|Game froze for several minutes and then crashed while flying around and loading chunks.
|241245|Generated Deepslate overwrites ore veins (mainly Iron ore veins).
|241255|Gigantic Performance Drop after a couple of minutes.
|241352|Directory structure is not consistent between server and client.
}}</onlyinclude>
== Video ==
{{Slicedlime|Cn5-qc-RTNA|By7EqjiPwX4}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-pre3]]
[[es:Java Edition 1.18 Pre-release 3]]
[[fr:Édition Java 1.18 Pre-release 3]]
[[ja:Java Edition 1.18 Pre-release 3]]
[[pt:Edição Java 1.18 Pre-release 3]]
[[ru:1.18 Pre-release 3 (Java Edition)]]
[[th:รุ่น Java 1.18 Pre-release 3]]
[[zh:Java版1.18-pre3]]

53
wiki_backup/1.18-pre4.txt Normal file
View file

@ -0,0 +1,53 @@
{{Infobox version
|title=Minecraft 1.18 Pre-release 4
|image=1.18-pre2.jpg
|image2=Java Edition 1.18 Pre-release 4.png
|edition=Java
|type=Pre-release
|date=November 17, 2021
|jsonhash=18a89b7495232a7f974107471000eafac95c6221 |jsonfile=1.18-pre4
|clienthash=9690cfe8e0d491173c17018f57671bb40745c33b
|clientmap=0a9d83ad6cef0ce073a85dfa6c4edb79d0512586
|serverhash=d17d3501f7f9d68793d5a505978ea5b87a208b43
|servermap=88b6756f389fc2378938b9b10001397d669e7ad7
|parent=1.18
|prevparent=1.17.1
|prev=1.18 Pre-release 3
|next=1.18 Pre-release 5
|nextparent=1.18
}}<onlyinclude>
'''1.18 Pre-release 4''' (known as '''1.18-pre4''' in the launcher) is the fourth pre-release for [[Java Edition 1.18]], released on November 17, 2021,<ref>{{Mcnet|minecraft-1-18-pre-release-2|Minecraft 1.18 Pre-Release 4|November 17, 2021}}</ref> which fixes bugs and crashes.
== Fixes ==
{{fixes|fixedin=1.18 Pre-release 4
|;dev
|241172|Rare Datafixer error occurred in old world.
|;previous
|241774|Crash when going nether portals or creating a single biome world with nether biomes // <code>java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0</code>.
|241775|Crash when going through end portals or creating a single biome world with end biomes // <code>java.lang.NegativeArraySizeException: -5</code>.
|241778|Game crashes or freeze when loading and upgrading the 1.17.1 version of the Superflat world // <code>java.util.concurrent.CompletionException: z: Biome decoration</code>.
}}</onlyinclude>
== Video ==
{{Slicedlime|Cn5-qc-RTNA|By7EqjiPwX4}}
== Trivia ==
* This Pre-release was released around two hours after the [[Java Edition 1.18 Pre-release 3|previous one]] released.
* This was the first time two ''Java Edition'' developmental versions were released on the same day since [[Java Edition 19w38a|19w38a]] and [[Java Edition 19w38b|19w38b]], which were released more than two years before.
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-pre4]]
[[es:Java Edition 1.18 Pre-release 4]]
[[fr:Édition Java 1.18 Pre-release 4]]
[[ja:Java Edition 1.18 Pre-release 4]]
[[lzh:爪哇版一點一八之預四]]
[[pt:Edição Java 1.18 Pre-release 4]]
[[ru:1.18 Pre-release 4 (Java Edition)]]
[[th:รุ่น Java 1.18 Pre-release 4]]
[[zh:Java版1.18-pre4]]

199
wiki_backup/1.18-pre5.txt Normal file
View file

@ -0,0 +1,199 @@
{{Infobox version
|title=Minecraft 1.18 Pre-release 5
|image=1.18-pre2.jpg
|image2=Java Edition 1.18 Pre-release 5.png
|edition=Java
|type=Pre-release
|date=November 19, 2021
|jsonhash=2ca2eedfcb4df34a6a35db0c67916cba2a4d7fbf |jsonfile=1.18-pre5
|clienthash=561446f5e8345f0d77b56f7874ce8aa71cdb1c62
|clientmap=77225d67ef98f5af3990facda860d1e4fd7118b9
|serverhash=c29d03e9c6a21a3234a947e1025793c3cc40c13b
|servermap=438bd2a54c066d09195c85c20cfd76818d725dde
|parent=1.18
|prevparent=1.17.1
|prev=1.18 Pre-release 4
|next=1.18 Pre-release 6
|nextparent=1.18
}}<onlyinclude>
'''1.18 Pre-release 5''' (known as '''1.18-pre5''' in the launcher) is the fifth pre-release for [[Java Edition 1.18]], released on November 19, 2021,<ref>{{Mcnet|minecraft-1-18-pre-release-2|Minecraft 1.18 Pre-Release 5|November 19, 2021}}</ref> which fixes some bugs, many of which are relating to textures issues.
== Additions ==
=== General ===
; [[Tag]]s
* Added following block tags:
** <code>azalea_grows_on</code>
*** Contains [[Tag#blocks dirt|#dirt]], [[Tag#blocks sand|#sand]], [[Tag#blocks terracotta|#terracotta]], [[snow_block]], and [[powder_snow]].
** <code>azalea_root_replaceable</code>
*** Contains [[Tag#blocks lush_ground_replaceable|#lush_ground_replaceable]], [[Tag#blocks terracotta|#terracotta]], and [[red_sand]].
** <code>replaceable_plants</code>
*** Contains [[grass]], [[fern]], [[dead_bush]], [[vine]], [[glow_lichen]], [[sunflower]], [[lilac]], [[rose_bush]], [[peony]], [[tall_grass]], [[large_fern]], and [[hanging_roots]].
** <code>terracotta</code>
*** Contains [[terracotta]], [[white_terracotta]], [[orange_terracotta]], [[magenta_terracotta]], [[light_blue_terracotta]], [[yellow_terracotta]], [[lime_terracotta]], [[pink_terracotta]], [[gray_terracotta]], [[light_gray_terracotta]], [[cyan_terracotta]], [[purple_terracotta]], [[blue_terracotta]], [[brown_terracotta]], [[green_terracotta]], [[red_terracotta]], and [[black_terracotta]].
* Added following item tags:
** <code>dirt</code>
*** Contains [[dirt]], [[grass_block]], [[podzol]], [[coarse_dirt]], [[mycelium]], [[rooted_dirt]], and [[moss_block]].
** <code>terracotta</code>
*** Contains [[terracotta]], [[white_terracotta]], [[orange_terracotta]], [[magenta_terracotta]], [[light_blue_terracotta]], [[yellow_terracotta]], [[lime_terracotta]], [[pink_terracotta]], [[gray_terracotta]], [[light_gray_terracotta]], [[cyan_terracotta]], [[purple_terracotta]], [[blue_terracotta]], [[brown_terracotta]], [[green_terracotta]], [[red_terracotta]], and [[black_terracotta]].
== Changes ==
{{more images|add texture changes}}
=== Blocks ===
; [[Anvil]]
* Slightly changed the hammer texture on its GUI.
; [[Barrel]]
* Bottom texture was changed.
; [[Carrot]]
* Texture of crop <code>stage3</code> was changed from [[File:Carrots Age 7 JE8.png|32px]] to [[File:Carrots Age 7 JE9.png|32px]], removed an extra pixel.
; [[Cartography table]]
* Texture was changed from [[File:Cartography Table JE2 BE1.png|32px]] to [[File:Cartography Table JE3.png|32px]], to match the dark oak planks texture after being updated a second time in the [[Texture Update]].
; [[Cocoa beans]]
* Textures of cocoa pods (<code>stage0</code> and <code>stage1</code>) were changed. This visually changes only particles.
; [[Dirt path]]
* Side texture was changed to better match its top texture.
; [[Door]]
* Changed door's model, to fix spruce door's top/bottom texture.
* Changed textures of oak doors and iron doors to remove a horizontal line.
; [[Enchanting table]]
* Changed the texture of the [[lapis lazuli]] icon in the GUI from [[File:Lapis Lazuli (enchanting slot) JE2.png|32px]] to [[File:Lapis Lazuli (enchanting slot) JE3.png|32px]].
; [[Glass pane]]
* Top texture was changed to better match its side texture.
; [[Lectern]]
* Base texture was changed to match the oak planks texture after being updated a second time in the Texture Update.
; [[Log]]s
* Top textures of crimson stems and warped stems were changed, to match {{el|be}}.
* Changed the top texture of dark oak log.
* Changed the side texture of stripped dark oak log, to match the color of its top texture.
; [[Spruce planks]]
* Changed one miscolored pixel on their texture.
; [[Stained glass]]
* Changed textures of blue stained glass and red stained glass, to match transparency of other types of stained glass.
=== Items ===
; [[Beetroot seeds]] and [[melon seeds]]
* Textures were moved down by 1 pixel.
=== Mobs ===
; [[Axolotl]]
* Texture of the wild axolotl was changed.
; [[Evoker]], [[vindicator]] and [[witch]]
* Removed hoods in their textures.
; [[Illusioner]]
* Removed a few misplaced pixels in its texture.
; [[Parrot]]
* The bottom texture of all parrots' wings has been flipped.
=== Non-mob entities ===
; [[Armor stand]]
* Smooth stone outline texture was changed.
=== World generation ===
; [[Random patch]]
* Melons are about 10 times more common than in previous snapshots.
* Pumpkins are about 6 times more common than in previous snapshots
* Sweet berry bushes are about 4 times more common than in previous snapshots.
; Upgrading of old worlds
* If there is any bedrock at height 0 in a chunk, new world generation will happen under any non-air block at height 0 in that chunk.
== Fixes ==
{{fixes|fixedin=1.18 Pre-release 5
|;old
|138118|Parrot wing texture is reversed on the bottom.
|148422|Stripped dark oak log side texture is too bright.
|150567|Dark oak log top texture bark ring not updated.
|162038|Pillagers have no hood texture.
|162803|Lily Pad mirrors texture when placed.
|170557|Spruce door top/bottom has the incorrect texture.
|176309|Illusioner has a few misplaced pixels left in their texture.
|176824|Red glass and outline of blue glass are slightly more opaque.
|176833|Anvil GUI hammer uses an outdated iron pallet.
|177664|Sound system warning messages are spamming the system log.
|180398|Too many sounds causes client to stall, limit can be easily reached with rabbits.
|194822|Glass pane top texture has not changed with the Texture Update.
|194950|Cactus in potted cactus is vertically squished.
|198007|Villages replace ice with path blocks instead of wood.
|199662|Extra pixels in cocoa pod textures as of Texture Update.
|200046|Cartography table planks texture is incorrect/slightly outdated.
|200137|Lectern base plate texture still uses the old planks texture.
|200956|Beetroot seeds texture is not vertically centered.
|200957|Melon seeds texture is not vertically centered.
|202910|Inconsistent highlight color on armor.
|204901|Side texture for dirt paths hasn't been updated with the texture update.
|219132|Cave vines hang from amethyst buds and clusters.
|221172|Warped and Crimson Stems use different top texture from Bedrock Edition.
|222154|Cave vines can generate hanging on pointed dripstone.
|222763|Armor stands use the old smooth stone slab texture.
|225553|Oak and iron doors have a line in their textures.
|226711|Carrot crop texture has an incorrect pixel.
|227258|Flowering Azalea Leaves are in both <code>#minecraft:mineable/hoe</code> and <code>#minecraft:mineable/axe</code> tags, while regular Azalea Leaves (and all other leaves) are only in <code>#minecraft:mineable/hoe</code>.
|228900|Cave vines can generate floating (Recurrence of MC-218817).
|229977|Breaking blocks with pistons on the east/west direction causes significant lag.
|231219|Cave vines can occasionally generate hanging on fences.
|231272|Cave vines can sometimes generate hanging on cobwebs.
|231818|You can no longer use the up or down arrow to navigate between servers in the multiplayer menu.
|233883|The hide and show messages buttons in the social interactions menu display their hover text regardless of the position of the cursor.
|234039|The back of wild axolotls are off-centered.
|235567|Clusters of dripstone (stalagmites) tend to generate abnormally frequent with thickness "tip" on tall caves.
|241747|Inconsistent Colors in grindstone GUI.
|;dev
|236723|The Floating Islands preset does not seem to be generating correctly.
|237500|Azalea trees can generate on top of huge mushrooms, trees & bamboo.
|238360|Rooted dirt cannot replace terracotta.
|238529|Azalea trees can fail to generate.
|238530|Hanging roots can fail to generate.
|238892|Rooted dirt doesn't replace red sand.
|239128|Sweet berry bushes generate extremely rare in comparison with 1.17.1.
|239143|Terracotta generating into caves in eroded badlands.
|239237|Azalea trees can be generated on icebergs.
|239474|Autosaving now causes extreme and gameplay-impacting lag.
|239489|Melons generate rarely in jungle biomes.
|239847|Chunk blending occasionally produces sharp chunk border edges.
|241256|Some feature configs still expect a configured feature instead of a placed feature.
|241278|Azalea trees are no longer generating.
|241539|Stone generates in the side of hoodoos.
|241566|Mossy cobblestone boulders generate in a grid pattern in old-growth spruce taigas.
|241588|Cave vines can sometimes generate hanging on water.
|241672|Mobs don't panic when burning if standing on blocks placed above water.
|241728|Converting world to 1.18 pre-release 2 generates new caves in too many places.
|241784|Some sliders in options menu do not work properly.
|241933|Spore blossoms, cave vines, and pointed dripstones generate indented into the cave surface.
|;previous
|241800|Cannot change numbers for gamerules on world creation.
|241847|Floating stone platform doesn't generate in void superflat world preset.
}}</onlyinclude>
== Video ==
{{Slicedlime|xn8HzbDgQm8|GhkrlcT-B-s}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-pre5]]
[[es:Java Edition 1.18 Pre-release 5]]
[[fr:Édition Java 1.18 Pre-release 5]]
[[ja:Java Edition 1.18 Pre-release 5]]
[[pt:Edição Java 1.18 Pre-release 5]]
[[ru:1.18 Pre-release 5 (Java Edition)]]
[[th:รุ่น Java 1.18 Pre-release 5]]
[[zh:Java版1.18-pre5]]

62
wiki_backup/1.18-pre8.txt Normal file
View file

@ -0,0 +1,62 @@
{{Infobox version
|title=Minecraft 1.18 Pre-release 8
|image=1.18-pre6.jpg
|image2=Java Edition 1.18 Pre-release 8.png
|edition=Java
|type=Pre-release
|date=November 24, 2021
|jsonhash=22997b1f48ef7cd8c71aac3e4d4391e8bab74c47 |jsonfile=1.18-pre8
|clienthash=ffb896e756a4edc4a538e9a0ac408f9f45ea5076
|clientmap=2164aa2dedc931aa5dad6170abcb056649bfb84e
|serverhash=051efe8853d00db6bef7f19324da25a465782376
|servermap=1a8d87a8bc254721e75e27cf567ed11dba5cb91f
|parent=1.18
|prevparent=1.17.1
|prev=1.18 Pre-release 7
|next=1.18 Release Candidate 1
|nextparent=1.18
}}<onlyinclude>
'''1.18 Pre-release 8''' (known as '''1.18-pre8''' in the launcher) is the eighth and final pre-release for [[Java Edition 1.18]], released on November 24, 2021,<ref>{{Mcnet|minecraft-1-18-pre-release-6|Minecraft 1.18 Pre-Release 8|November 24, 2021}}</ref> which fixes crashes and bugs.
== Changes ==
=== Mobs ===
; [[Ravager]]s
* No longer attack baby [[villager]]s.
== Fixes ==
{{fixes|fixedin=1.18 Pre-release 8
|;old
|227537|Crash: java.lang.NullPointerException: Cannot invoke "<code>it.unimi.dsi.fastutil.objects.ObjectSet.remove(Object)</code>" because "<code>$$4</code>" is null.
|230866|Eating whilst traveling through a Nether portal prints error in game log.
|;dev
|236783|Parity issue: Ravagers still attack baby villagers in ''Java Edition''.
|241991|Game freezes without crash logs when upgrading from 1.12.2 to 1.18 pre-5.
|242375|Cats no longer scare phantoms away.
|;previous
|242646|Falling in the void and trying to respawn crashes the game.
|242647|Crash for blocks finding block states: <code>Missing Palette entry for index 6</code>.
}}</onlyinclude>
== Video ==
{{Slicedlime|Fv7n09DmcHY}}
== Trivia ==
* This update was released exactly 10 years after [[11w47a]], the first snapshot using the current naming format.
* This is the third time to feature an eighth pre-release, after [[Java Edition 1.13-pre8|1.13-pre8]] and [[Java Edition 1.16 Pre-release 8|1.16-pre8]].
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-pre8]]
[[es:Java Edition 1.18 Pre-release 8]]
[[fr:Édition Java 1.18 Pre-release 8]]
[[ja:Java Edition 1.18 Pre-release 8]]
[[lzh:爪哇版一點一八之預八]]
[[pt:Edição Java 1.18 Pre-release 8]]
[[ru:1.18 Pre-release 8 (Java Edition)]]
[[th:รุ่น Java 1.18 Pre-release 8]]
[[zh:Java版1.18-pre8]]

45
wiki_backup/1.18-rc2.txt Normal file
View file

@ -0,0 +1,45 @@
{{Infobox version
|title=Minecraft 1.18 Release Candidate 2
|image=1.18-rc1.jpg
|image2=Java Edition 1.18 Release Candidate 2.png
|edition=Java
|type=Release candidate
|date=November 26, 2021
|jsonhash=be0e85e9e15f0c8b02cb2793ee37ea1a0593d7ba |jsonfile=1.18-rc2
|clienthash=6d90a50cc252b78f959b5d41c46f8d983efda594
|clientmap=44441ef893cb6531e8322d257e8d03d5463fb810
|serverhash=96162b8d0af608bee2febe602bdb46942e85f6d8
|servermap=97dd4d70ba711b6dbd6f61b9c7dde9e02e4d00fd
|parent=1.18
|prevparent=1.17.1
|prev=1.18 Release Candidate 1
|next=1.18 Release Candidate 3
|nextparent=1.18
}}<onlyinclude>
'''1.18 Release Candidate 2''' (known as '''1.18-rc2''' in the launcher) is the second release candidate for [[Java Edition 1.18]], released on November 26, 2021,<ref>{{Mcnet|minecraft-1-18-release-candidate-1|Minecraft 1.18 Release Candidate 2|November 26, 2021}}</ref> which fixes a bug related to world generation.
== Fixes ==
{{fixes|fixedin=1.18 Release Candidate 2
|;dev
|242547|In large caves, the cave generation can't reach Y{{=}}-54, not allowing to generate large lava lakes.
}}</onlyinclude>
== Video ==
{{Slicedlime|VIcxqPKLusQ}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-rc2]]
[[es:Java Edition 1.18 Release Candidate 2]]
[[fr:Édition Java 1.18 Release Candidate 2]]
[[ja:Java Edition 1.18 Release Candidate 2]]
[[lzh:爪哇版一點一八之候二]]
[[pt:Edição Java 1.18 Release Candidate 2]]
[[ru:1.18 Release Candidate 2 (Java Edition)]]
[[th:รุ่น Java 1.18 Release Candidate 2]]
[[zh:Java版1.18-rc2]]

49
wiki_backup/1.18-rc3.txt Normal file
View file

@ -0,0 +1,49 @@
{{Infobox version
|title=Minecraft 1.18 Release Candidate 3
|image=1.18-rc1.jpg
|image2=Java Edition 1.18 Release Candidate 3.png
|edition=Java
|type=Release candidate
|date=November 26, 2021
|jsonhash=21db6043aabebc4012674572a678f856d666a9d9 |jsonfile=1.18-rc3
|clienthash=060dd014d59c90d723db87f9c9cedb511f374a71
|clientmap=b64667a23e5ea5f0cc0547241c253d2a72a97c56
|serverhash=9a03d2c4ec2c737ce9d17a43d3774cdc0ea21030
|servermap=a36b4033a861c6e9bd3ced78b267e6aeaa75b639
|parent=1.18
|prevparent=1.17.1
|prev=1.18 Release Candidate 2
|next=1.18 Release Candidate 4
|nextparent=1.18
}}<onlyinclude>
'''1.18 Release Candidate 3''' (known as '''1.18-rc3''' in the launcher) is the third release candidate for [[Java Edition 1.18]], released on November 26, 2021,<ref>{{Mcnet|minecraft-1-18-release-candidate-1|Minecraft 1.18 Release Candidate 3|November 26, 2021}}</ref> which fixes a bug.
== Fixes ==
{{fixes|fixedin=1.18 Release Candidate 3
|;dev
|242859|Blocks losing the loot inside them after dying.
}}</onlyinclude>
== Video ==
{{Slicedlime|VIcxqPKLusQ}}
== Trivia ==
* This release candidate was released within three hours after [[Java Edition 1.18 Release Candidate 2|the previous release candidate]].
* This is first time that Minecraft had a third release candidate.
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-rc3]]
[[es:Java Edition 1.18 Release Candidate 3]]
[[fr:Édition Java 1.18 Release Candidate 3]]
[[ja:Java Edition 1.18 Release Candidate 3]]
[[lzh:爪哇版一點一八之候三]]
[[pt:Edição Java 1.18 Release Candidate 3]]
[[ru:1.18 Release Candidate 3 (Java Edition)]]
[[th:รุ่น Java 1.18 Release Candidate 3]]
[[zh:Java版1.18-rc3]]

47
wiki_backup/1.18-rc4.txt Normal file
View file

@ -0,0 +1,47 @@
{{Infobox version
|title=Minecraft 1.18 Release Candidate 4
|image=1.18-rc1.jpg
|image2=Java Edition 1.18 Release Candidate 4.png
|edition=Java
|type=Release candidate
|date=November 29, 2021
|jsonhash=8d6c34be0b1efb7d8a35e756da40b3e4d4343e6a |jsonfile=1.18-rc4
|clienthash=4cf8ed5168308946275308cae955ec70b4379477
|clientmap=b64667a23e5ea5f0cc0547241c253d2a72a97c56
|serverhash=5889357fe058d867f6e27ee3f033286c430ec91e
|servermap=a36b4033a861c6e9bd3ced78b267e6aeaa75b639
|parent=1.18
|prevparent=1.17.1
|prev=1.18 Release Candidate 3
|next=
|nextparent=1.18
}}<onlyinclude>
'''1.18 Release Candidate 4''' (known as '''1.18-rc4''' in the launcher) is the fourth and the final release candidate for [[Java Edition 1.18]], released on November 29, 2021,<ref>{{Mcnet|minecraft-1-18-release-candidate-1|Minecraft 1.18 Release Candidate 4|November 29, 2021}}</ref> which fixes an issue with coal ore distribution.
== Fixes ==
{{fixes|fixedin=1.18 Release Candidate 4|otherissuescount=1}}
; Other
* Fixed an issue where coal ore at lower heights (Y=0 to Y=192) is not distributed as intended since [[Java Edition 1.18 Pre-release 1|1.18-pre1]].</onlyinclude>
== Video ==
{{Slicedlime|J12xe8mKU3Y}}
== Trivia ==
* This is the first time that a Minecraft release had a fourth release candidate, making it the most release candidates for a single update.
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18-rc4]]
[[es:Java Edition 1.18 Release Candidate 4]]
[[fr:Édition Java 1.18 Release Candidate 4]]
[[ja:Java Edition 1.18 Release Candidate 4]]
[[lzh:爪哇版一點一八之候四]]
[[pt:Edição Java 1.18 Release Candidate 4]]
[[ru:1.18 Release Candidate 4 (Java Edition)]]
[[th:รุ่น Java 1.18 Release Candidate 4]]
[[zh:Java版1.18-rc4]]

View file

@ -0,0 +1,56 @@
{{Infobox version
|title=Minecraft 1.18.1 Pre-release 1
|image=1.18.1-pre1.jpg
|image2=Java Edition 1.18.1 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=December 3, 2021
|jsonhash=27b951b717795998c22a249e4ad4a302b92989fa |jsonfile=1.18.1-pre1
|clienthash=9561f774dcc8797a02a907fc79d946533fbb00c7
|clientmap=2240862fdd181309bb3a34f8472bdb9154d928b6
|serverhash=cd99e68b49c8a7db185d053518c6fb135cd04564
|servermap=8efe9d1d2db4f1a0d868dd0d1ea30b49b67d9394
|parent=1.18.1
|prevparent=1.18
|prev=
|next=1.18.1 Release Candidate 1
|nextparent=1.18.1
}}<onlyinclude>
'''1.18.1 Pre-release 1''' (known as '''1.18.1-pre1''' in the launcher) is the first and only pre-release for [[Java Edition 1.18.1]], released on December 3, 2021,<ref name="article_1.18.1-pre1">{{Mcnet|minecraft-1-18-1-pre-release-1|Minecraft 1.18.1 Pre-Release 1|December 3, 2021}}</ref> which makes changes to the fog and fixes bugs. This is the final pre-release to be released in 2021.
== Changes ==
=== General ===
; [[Fog]]
* World fog now starts further away from the player, to make distant terrain more visible.
* Instead of applying fog as a spherical volume it is now applied as a cylindrical volume.
== Fixes ==
{{fixes|fixedin=1.18.1 Pre-release 1|otherissuescount=1
|;From released versions before 1.18
|219507|Beacon's power reverts back to previous one on world reload.
|;From 1.18
|242729|Observer activating without any updates nearby, caused by {{cmd|clone}}.
|243216|Chunk render distance on servers seems shorter than in 1.17.1.
}}
; Other
* Fixed an issue that would cause players on low-bandwidth connections to get timeout errors when connecting to a server.<ref name="article_1.18.1-pre1"/></onlyinclude>
== Video ==
{{Slicedlime|8wqANdZ7gUQ}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18.1-pre1]]
[[es:Java Edition 1.18.1 Pre-release 1]]
[[fr:Édition Java 1.18.1 Pre-release 1]]
[[ja:Java Edition 1.18.1 Pre-release 1]]
[[pt:Edição Java 1.18.1 Pre-release 1]]
[[ru:1.18.1 Pre-release 1 (Java Edition)]]
[[th:รุ่น Java 1.18.1 Pre-release 1]]
[[uk:1.18.1 Pre-release 1 (Java Edition)]]
[[zh:Java版1.18.1-pre1]]

View file

@ -0,0 +1,46 @@
{{Infobox version
|title=Minecraft 1.18.1 Release Candidate 2
|image=1.18.1-rc1.jpg
|image2=Java Edition 1.18.1 Release Candidate 2.png
|edition=Java
|type=Release Candidate
|date=December 8, 2021
|jsonhash=9ab6659a95f1a99176357566c18bf1e5c14553c7 |jsonfile=1.18.1-rc2
|clienthash=816d038208ac127176fde4d6597fd11a0aeb98c7
|clientmap=17cd609e90409b0b0eebf0ff0c969279bbe34c18
|serverhash=653c704a89fe6437b363cff32ded037d5c0f6ec0
|servermap=7d7bfa82af5af763e01919942b56062267edaf38
|parent=1.18.1
|prevparent=1.18
|prev=1.18.1 Release Candidate 1
|next=1.18.1 Release Candidate 3
|nextparent=1.18.1
}}<onlyinclude>
'''1.18.1 Release Candidate 2''' (known as '''1.18.1-rc2''' in the launcher) is the second release candidate for [[Java Edition 1.18.1]], released on December 8, 2021,<ref>{{Mcnet|minecraft-1-18-1-release-candidate-1|Minecraft 1.18.1 Release Candidate 2|December 8, 2021}}</ref> which fixes a bug that caused [[chunk]] loading issues.
== Fixes ==
{{fixes|fixedin=1.18.1 Release Candidate 2
|;previous
|245010|Sometimes certain chunks will never load.
}}</onlyinclude>
== Video ==
{{Slicedlime|hUu0tjffvVs}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18.1-rc2]]
[[es:Java Edition 1.18.1 Release Candidate 2]]
[[fr:Version Java 1.18.1 Release Candidate 2]]
[[ja:Java Edition 1.18.1 Release Candidate 2]]
[[lzh:爪哇版一點一八點一之候二]]
[[pt:Edição Java 1.18.1 Release Candidate 2]]
[[ru:1.18.1 Release Candidate 2 (Java Edition)]]
[[th:รุ่น Java 1.18.1 Release Candidate 2]]
[[uk:1.18.1 Release Candidate 2 (Java Edition)]]
[[zh:Java版1.18.1-rc2]]

View file

@ -0,0 +1,44 @@
{{Infobox version
|title=Minecraft 1.18.1 Release Candidate 3
|image=1.18.1-rc1.jpg
|image2=Java Edition 1.18.1 Release Candidate 3.png
|edition=Java
|type=Release candidate
|date=December 10, 2021
|jsonhash=fd01124f1b6f10eccaa61b690fcc4233e0b6a63e |jsonfile=1.18.1-rc3
|clienthash=26550a328fd4fbf705cffd3703d8ee63163810e3
|clientmap=391e64b5fab23ca972fd53eb6597fbc7fed3aed1
|serverhash=29c43f3af18e66f8368a16ec89f8e54ecda71d85
|servermap=456f9cdf0ac35c4cc8475e5a285d4ae9ec122138
|parent=1.18.1
|prevparent=1.18
|prev=1.18.1 Release Candidate 2
|next=
|nextparent=1.18.1
}}<onlyinclude>
'''1.18.1 Release Candidate 3''' (known as '''1.18.1-rc3''' in the launcher) is the third and final release candidate for [[Java Edition 1.18.1]], released on December 10, 2021,<ref name="article_1.18.1-rc3">{{Mcnet|minecraft-1-18-1-release-candidate-1|Minecraft 1.18.1 Release Candidate 3|December 10, 2021}}</ref> which fixes a critical security issue. This is the final release candidate to be released in 2021.
== Fixes ==
{{fixes|fixedin=1.18.1 Release Candidate 3|otherissuescount=1}}
; Other
* Fixed a critical security issue in which attackers are able to execute code on others' devices (RCE exploit) via [[Chat|in-game messaging]] or other methods where the game logs a certain exploitable string formatted as <code>$<nowiki/>{jndi:ldap://<url>}</code>, due to an upstream vulnerability in log4j2.<ref name="article_1.18.1-rc3"/><ref>{{Mcnet|important-message--security-vulnerability-java-edition|Important Message: Security vulnerability in Java Edition|December 10, 2021}}</ref><ref>https://help.aliyun.com/noticelist/articleid/1060971232.html</ref></onlyinclude>
== Video ==
{{Slicedlime|4RWHaGEW9LA}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18.1-rc3]]
[[es:Java Edition 1.18.1 Release Candidate 3]]
[[fr:Version Java 1.18.1 Release Candidate 3]]
[[ja:Java Edition 1.18.1 Release Candidate 3]]
[[pt:Edição Java 1.18.1 Release Candidate 3]]
[[ru:1.18.1 Release Candidate 3 (Java Edition)]]
[[th:รุ่น Java 1.18.1 Release Candidate 3]]
[[uk:1.18.1 Release Candidate 3 (Java Edition)]]
[[zh:Java版1.18.1-rc3]]

View file

@ -0,0 +1,57 @@
{{Infobox version
|title=Minecraft 1.18.2 Pre-release 2
|image=1.18.2-pre2.jpg
|image2=Java Edition 1.18.2 Pre-release 2.png
|edition=Java
|type=Pre-release
|date=February 21, 2022
|jsonhash=8da33264b60e2cbe50646235e9fcbe1b5e0d7d43 |jsonfile=1.18.2-pre2
|clienthash=d0a4d6f3c6ba2232b7e1ac4223f8a93741c8e47a
|clientmap=18e0d542e7d5b4a1426bed77818b2e3d93dd5dd6
|serverhash=888cb380db39a115cfe978c00922d24536bdd2a5
|servermap=534b35bb75418d46e8a28c83c175a5cb8193f67a
|parent=1.18.2
|prevparent=1.18.1
|prev=1.18.2 Pre-release 1
|next=1.18.2 Pre-release 3
|nextparent=1.18.2
}}<onlyinclude>
'''1.18.2 Pre-release 2''' (known as '''1.18.2-pre2''' in the launcher) is the second pre-release for [[Java Edition 1.18.2]], released on February 21, 2022,<ref>{{Mcnet|minecraft-1-18-2-pre-release-2|Minecraft 1.18.2 Pre-Release 2|February 21, 2022}}</ref> which adds a density function, and fixes bugs.
== Additions ==
=== World generation ===
; [[Custom world generation]]
* Added {{w|Spline interpolation|spline density}} function: general-purpose building block that allows user to express almost any function using a cubic spline.
== Fixes ==
{{fixes|fixedin=1.18.2 Pre-release 2
|;From released versions before 1.18
|214138|Placing block after jumping from an enchantment table causes desync.
|234390|The {{cd|minecraft:ui.button.click}} sound isn't played when clicking on the credits button in the main menu.
|;From 1.18
|243766|Unable to put focus on "Copyright Mojang AB. Do not distribute" using {{key|Tab}} key.
|;dev
|248638|Strongholds can generate in The Void biome.
|;previous
|248681|Superflat worlds cannot be created without using presets.
|248694|An empty {{cd|generator-settings}} string crashes the server when starting up.
|248717|Fortress mobs can spawn outside of fortresses.
}}</onlyinclude>
== Video ==
{{Slicedlime|mAbaiNQczMs}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18.2-pre2]]
[[es:Java Edition 1.18.2 Pre-release 2]]
[[fr:Édition Java 1.18.2 Pre-release 2]]
[[ja:Java Edition 1.18.2 Pre-release 2]]
[[pt:Edição Java 1.18.2 Pre-release 2]]
[[ru:1.18.2 Pre-release 2 (Java Edition)]]
[[zh:Java版1.18.2-pre2]]

View file

@ -0,0 +1,55 @@
{{Infobox version
|title=Minecraft 1.18.2 Pre-release 3
|image=1.18.2-pre2.jpg
|image2=Java Edition 1.18.2 Pre-release 3.png
|edition=Java
|type=Pre-release
|date=February 23, 2022
|jsonhash=fcc448917e087672f34476aaa27935904d3bb847 |jsonfile=1.18.2-pre3
|clienthash=8dcc197b6dca3dfa2f6a0d5d3f0ff79de39b4700
|clientmap=abfe02738e7fc3d2155dd258ec66c8e25f033c5e
|serverhash=1c898afff0449eed08ad8036aaa4c652952035de
|servermap=f023bea3f6cde2dbfa340649d19e163de93224e8
|parent=1.18.2
|prevparent=1.18.1
|prev=1.18.2 Pre-release 2
|next=1.18.2 Release Candidate 1
|nextparent=1.18.2
}}<onlyinclude>
'''1.18.2 Pre-release 3''' (known as '''1.18.2-pre3''' in the launcher) is the third and final pre-release for [[Java Edition 1.18.2]], released on February 23, 2022,<ref>{{Mcnet|minecraft-1-18-2-pre-release-2|Minecraft 1.18.2 Pre-Release 3|February 23, 2022}}</ref> which fixes bugs.
== Fixes ==
{{fixes|fixedin=1.18.2 Pre-release 3
|;From released versions before 1.18
|170545|macOS: Crash upon entering fullscreen.
|218739|Glow berries and glow lichen generation does not cause light updates across chunk borders.
|;From 1.18
|244772|Can't double click to join a realm.
|;dev
|248539|{{cmd|locate}} command not working properly in Flat worlds.
|248618|Every time a resource pack is reloaded, gameplay timers and notices reload.
|248636|The game output and server console are logged and spammed with "Creating a MIN function between two non-overlapping inputs" when joining or creating a world.
|248637|Crash when opening singleplayer screen due to {{cd|StackOverflowError}} in {{cd|net.minecraft.nbt.CompoundTag$1.skip}}.
|248680|The world freezes on Superflat when using the {{cmd|locate}} command to find a pillager outpost.
|;previous
|248748|Explorer maps leading to custom structures can cause the server to hang.
}}</onlyinclude>
== Video ==
{{Slicedlime|NVelyOUxXag}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18.2-pre3]]
[[es:Java Edition 1.18.2 Pre-release 3]]
[[fr:Édition Java 1.18.2 Pre-release 3]]
[[ja:Java Edition 1.18.2 Pre-release 3]]
[[lzh:爪哇版一點一八點二之預三]]
[[pt:Edição Java 1.18.2 Pre-release 3]]
[[ru:1.18.2 Pre-release 3 (Java Edition)]]
[[zh:Java版1.18.2-pre3]]

View file

@ -0,0 +1,48 @@
{{Infobox version
|title=Minecraft 1.18.2 Release Candidate 1
|image=1.18.2-rc1.jpg
|image2=Java Edition 1.18.2 Release Candidate 1.png
|edition=Java
|type=Release candidate
|date=February 25, 2022
|jsonhash=a2fdd5749ab3f214f566c07065788a56cb068611 |jsonfile=1.18.2-rc1
|clienthash=a2699aadf0435f35cc0694d2f9e9403baac27ee2
|clientmap=8b7892d88d0b9a3f7bab25f7cdff0bad7b4bc0c2
|serverhash=2f52c69c90d63c024548ae5c5438ff3156ece6c2
|servermap=eeec4456359d8698565acb9d5b67a68cc8885252
|parent=1.18.2
|prevparent=1.18.1
|prev=1.18.2 Pre-release 3
|next=
|nextparent=1.18.2
}}<onlyinclude>
'''1.18.2 Release Candidate 1''' (known as '''1.18.2-rc1''' in the launcher) is the first and only release candidate for [[Java Edition 1.18.2]], released on February 25, 2022,<ref>{{Mcnet|minecraft-1-18-2-release-candidate-1|Minecraft 1.18.2 Release Candidate 1|February 25, 2022}}</ref> which fixes bugs.
== Fixes ==
{{fixes|fixedin=1.18.2 Release Candidate 1
|;From released versions before 1.18
|188086|Decorations and amethyst geodes get cut off on full chunk boundaries upon relog.
|;From 1.18
|244682|Some custom dimensions settings can cause the server to stop running, but not crash.
|;dev
|248764|Some worldgen datapacks can kill the internal server (possibly related to density functions).
}}</onlyinclude>
== Video ==
{{Slicedlime|fCxLlCTG18I}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.18.2-rc1]]
[[es:Java Edition 1.18.2 Release Candidate 1]]
[[fr:Édition Java 1.18.2 Release Candidate 1]]
[[ja:Java Edition 1.18.2 Release Candidate 1]]
[[lzh:爪哇版一點一八點二之候一]]
[[pt:Edição Java 1.18.2 Release Candidate 1]]
[[ru:1.18.2 Release Candidate 1 (Java Edition)]]
[[zh:Java版1.18.2-rc1]]

166
wiki_backup/1.19-pre1.txt Normal file
View file

@ -0,0 +1,166 @@
{{Infobox version
|title=Minecraft 1.19 Pre-release 1
|image=1.19-pre1.jpg
|image2=Java Edition 1.19 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=May 18, 2022
|jsonhash=e6252b857aa30ca29c7edd6fc063c38dd4599ae3 |jsonfile=1.19-pre1
|clienthash=044bbfdb7e166590395e632cccf6d3728363472f
|clientmap=2dfc7fd4e5a4c7e3a23639689783f24806bfe9da
|serverhash=1be90ec671e145e56b789de428b63ec43a2d9721
|servermap=a165b38df827030571e6e37b4a6c78ab3bef26e0
|parent=1.19
|prevparent=1.18.2
|prev=22w19a
|next=1.19 Pre-release 2
|nextparent=1.19
}}<onlyinclude>
'''1.19 Pre-release 1''' (known as '''1.19-pre1''' in the launcher) is the first pre-release for [[Java Edition 1.19]], released on May 18, 2022,<ref>{{Mcnet|minecraft-1-19-pre-release-1|Minecraft 1.19 Pre-Release 1|May 18, 2022}}</ref> which makes some tweaks and fixes bugs.
== Changes ==
=== Blocks ===
; [[Sculk sensor]]
* Item interaction vibrations are now emitted when player starts or finishes "using" an item with a start and finish state (such as [[bow]]s, [[crossbow]]s, [[goat horn]]s, [[shield]]s, [[food]]).
* Item interaction vibrations are now ignored when [[sneaking]].
* Now activates upon entities being summoned by a [[monster spawner|spawner]].
* Added the following game events that the sculk sensor reacts to, along with corresponding frequency value:
** {{cd|note_block_play}} with a vibration frequency of 6.
** {{cd|instrument_play}} with a vibration frequency of 15.
=== Mobs ===
; [[Cat]]
* The ID of the {{cd|british}} cat variant has been renamed to {{cd|british_shorthair}}.
; [[Endermen]], [[skeleton]]s, and [[wither skeleton]]s
* Now spawn from light level 0 to 11 in [[the Nether]], which is wider range than before.
; [[Iron golem]]
* The spawning change introduced in the previous snapshot has been reverted.
; [[Warden]]
* Now require a full solid surface on the block they are spawning on.
=== World generation ===
; [[Custom world generation]]
* Dimension types now have two new fields for controlling monster spawns.
** {{nbt|int|monster_spawn_block_light_limit}} is an integer controlling the block light needed to prevent monster spawns.
** {{nbt|int|monster_spawn_light_level}} is an int provider which is evaluated to find a value to compare the current overall brightness with to determine if a monster should be allowed to spawn.
; [[Mangrove swamp]]
* Slightly reduced the number of [[mangrove tree]]s (25 attempts per chunk to place a tree, down from 30).
=== Gameplay ===
; [[Advancement]]s
* The parent advancement of the "It Spreads" advancement is changed from "Adventure" to "Monster Hunter".
=== Command format ===
; {{cmd|place|link=Commands/place (Java Edition)}}
* Auto-completion is now available for the {{cd|<template>}} argument to {{cmd|place template|link=none}}.
=== General ===
; Chat
* Now, a chat preview is also shown for chat-related commands, such as {{cmd|say}} and {{cmd|msg}}.
; [[Options]]
* Renamed the "Only Show Signed Chat" chat option to "Only Show Secure Chat".
** Also updated its description.
* The description of the FOV effects setting now correctly mentions all gameplay effects rather than only speed effects.
; {{samp|[[options.txt]]}}
* Renamed {{cd|onlyShowSignedChat}} to {{cd|onlyShowSecureChat}}
; Protocol
* Custom servers can now enable or disable chat preview for certain clients by sending a new network packet.
; [[Realms]]
* The message when opening the Realms menu in a snapshot version has been changed from "Your client is outdated and not compatible with Realms. Please update to the most recent version of Minecraft." to "Your client is not compatible with Realms. Please use the most recent version of Minecraft. Realms is not compatible with snapshot versions.".
; {{samp|[[server.properties]]}}
* Removed the temporary server property {{cd|test-rainbow-chat}}.
; Sound
* Equipping armor using the inventory now plays a sound.
* Placing items that aren't armor (such as [[pumpkin]]s and [[skull]]s) in the headwear slot now plays a generic equip sound.
* The {{cd|entity.frog.tounge}} sound event is now correctly named as {{cd|entity.frog.tongue}}
; [[Tag]]s
* The {{cd|#default_spawns}} cat variant tag has been updated to contain {{cd|british_shorthair}} instead of {{cd|british}}.
* Added {{cd|d=and|item_interact_start|item_interact_finish}} game events to the {{cd|#ignore_vibrations_sneaking}} game event tag.
* Added {{cd|instrument_play}} game event to the {{cd|d=and|#vibrations|#warden_can_listen}} game event tags.
== Fixes ==
{{fixes|fixedin=1.19 Pre-release 1
|;old
|45838|Certain chat messages exceed 32767 byte limit and disconnect clients.
|94060|Equipping armor/elytra through inventory or dispenser doesn't play sounds.
|131740|Re-running the data generator in the same folder causes previously generated -reports and- .snbt files to be deleted.
|134892|{{cd|PacketBuffer.writeString}}'s max length is in bytes, while {{cd|readString}} is in characters.
|202319|Dedicated server text filter does not apply to all messages.
|209222|Attempting to open the Minecraft Realms menu claims that the client is outdated, even if the snapshot may be newer than the release.
|210231|Sculk sensors are not activated upon using the riptide enchantment.
|210279|Sculk sensors are not activated upon entities being summoned by a spawner.
|210329|Sculk sensors are not activated upon armor on entities breaking.
|213823|Minecart placed on wool is detected by sculk sensors but minecart driven over wool is not.
|213915|Equipping armor through the inventory does not count as a vibration.
|218222|Distance value for Sculk Sensors is limited to integers.
|225195|Goats don't panic when tempted with their favorite food.
|230735|"FOV Effects" setting description is innacurate.
|;dev
|249118|Crash on M1 computer.
|249141|No subtitles are produced upon frogs stepping.
|249164|The {{cd|entity.frog.tounge}} sound is misspelled.
|249209|Frogs don't panic when tempted with their favorite food.
|249260|Tadpoles are not tempted by slime balls.
|249328|Frogs can jump around while being tempted with slimeballs.
|249456|Tadpoles drop experience, unlike other baby mobs.
|249619|The comparator frequency of sculk sensors when you are stepping on it is the last frequency it heard.
|249711|Items collected off the ground by allays travel too high above their hitboxes.
|249757|'It Spreads' advancement is not a child of 'Monster Hunter'.
|249834|Swapping items to the player's off-hand can generate vibrations.
|249980|The Birthday Song advancement description doesn't capitalise the word Cake.
|250006|ID of the british cat doesn't match texture name.
|250019|Sculk catalyst triggers when a villager converts into zombie villager by a zombie.
|250022|Modifying offhand slot via /item command does not produce sound, but still triggers sculk sensors.
|250317|The subtitle for picking up a Tadpole with a bucket is the generic "Bucket fills" subtitle.
|250351|{{cmd|tp}} "argument" duplicated on the tab options.
|250919|The server crashes when attempting to load chunks that contain command blocks that consist of large numbers of characters within the previous output field.
|250932|Goat horn subtitles are improperly capitalized.
|250940|Goat horn playing isn't detected as a vibration.
|251132|Server logs "Game test server" messages.
|251312|Entity selectors in {{cmd|say}} commands are no longer evaluated.
|251355|Potted mangrove propagule model is incorrect.
|251396|{{cd|java.lang.IllegalArgumentException: Name and ID cannot both be blank}}.
|251405|Structure Block messages are formatted as chat.
|251479|Duplicate object key [lang file].
|251550|Failed to launch the game on 32-bit operating system.
|;previous
|251640|{{cd|io.netty.handler.codec.EncoderException}} when using special characters in chat message.
|251641|Game crash regarding warden anger.
|251647|Chat closes itself if the control for Open Chat is set to {{key|Enter}}.
|251649|Clicking "incomplete command" message removes {{cd|/}} in chat.
|251650|Iron golems can spawn on non spawnable blocks such as leaves, glass, sea lanterns, etc.
|251652|Warden emerge/roar/sonic charge/dig animation (and possibly other similar animations) don't start unless the player looks at the Warden first.
|251656|{{cmd|say}} command fails to apply server message styling when sent from a command block, server console, or RCON, unlike {{cmd|msg}}.
|251690|Wardens can spawn on any non-full block, as long as it's solid.
|251762|You can run commands with double slash prefix.
|251773|The {{cd|--dev}} argument for the data generators no longer converts NBT to SNBT properly.
}}</onlyinclude>
== Video ==
{{Slicedlime|Y9GFrCPftlY}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19-pre1]]
[[es:Java Edition 1.19 Pre-release 1]]
[[fr:Édition Java 1.19 Pre-release 1]]
[[ja:Java Edition 1.19 Pre-release 1]]
[[pt:Edição Java 1.19 Pre-release 1]]
[[ru:1.19 Pre-release 1 (Java Edition)]]
[[zh:Java版1.19-pre1]]

138
wiki_backup/1.19-pre2.txt Normal file
View file

@ -0,0 +1,138 @@
{{Infobox version
|title=Minecraft 1.19 Pre-release 2
|image=1.19-pre2.jpg
|image2=Java Edition 1.19 Pre-release 2.png
|edition=Java
|type=Pre-release
|date=May 23, 2022
|jsonhash=b4b573ba1d0882dd5150655804d58cfe1e82a3b1 |jsonfile=1.19-pre2
|clienthash=9dff887a5fe3109ed66dec7dc15878c1d4d3887c
|clientmap=3f9a517db9a51d10de3bfb5642c7134751586133
|serverhash=6cc6cac49cd862ad9005816eb1ffc7dd4bd066dd
|servermap=820f381f8f120bcb25d0c0f1516ff9645efd8eb9
|parent=1.19
|prevparent=1.18.2
|prev=1.19 Pre-release 1
|next=1.19 Pre-release 3
|nextparent=1.19
}}<onlyinclude>
'''1.19 Pre-release 2''' (known as '''1.19-pre2''' in the launcher) is the second pre-release for [[Java Edition 1.19]], released on May 23, 2022,<ref>{{Mcnet|minecraft-1-19-pre-release-2|Minecraft 1.19 Pre-Release 2|May 23, 2022}}</ref> which makes some tweaks, and fixes bugs, many of which are relating to [[sculk sensor]]s' vibration detection.
== Additions ==
=== General ===
; [[Tag]]s
* Added following biome tag:
** {{cd|#mineshaft_blocking}}: contains {{cd|deep_dark}}.
== Changes ==
=== Blocks ===
; [[Sculk sensor]]
* Added the {{cd|teleport}} game event that the sculk sensor reacts to, with frequency value 5.
=== Items ===
; [[Goat horn]]
* Now dropped when a [[goat]] rams [[copper ore]] as well.
=== Mobs ===
; [[Warden]]
* Now despawn when stuck in a liquid instead of staying for a long time.
=== Gameplay ===
; [[Advancement]]s
* "It Spreads" is no longer granted when a {{tooltip|mob that drops no experience|all baby animals, allays, bats, iron golems, snow golems, villagers, and wandering traders}} is killed near a [[sculk catalyst]].
=== General ===
; Sound
* Reverted using generic equip sound when equipping non-armor items in the head slot in the last version: they no longer emit a sound.
** However, they are still able to activate sculk sensors.
; [[Tag]]s
* Added {{cd|copper_ore}} to the {{cd|#snaps_goat_horn}} block tag.
* Added {{cd|teleport}} game event to the {{cd|d=and|#vibrations|#warden_can_listen}} game event tags.
== Fixes ==
{{fixes|fixedin=1.19 Pre-release 2
|;old
|186148|{{cd|death.attack.witherSkull.item}} displays raw translation string (is untranslated).
|186851|{{cd|death.attack.sting.item}} displays raw translation string (is untranslated).
|207268|Sculk sensors don't detect stripping logs, tilling dirt, or pathing grass.
|208759|Sculk Sensor's 'block placed' doesn't trigger with villagers placing crops.
|208760|Sculk Sensor's 'block placed' doesn't trigger when snow golems place snow layers.
|208761|Sculk Sensor's 'block destroyed' doesn't trigger when blocks are destroyed by pistons.
|209701|Sculk sensors are not activated upon placing food onto campfires.
|209900|Sculk sensors are not activated upon inserting or retrieving music discs from jukeboxes.
|210330|Sculk sensors are not activated upon throwing eyes of ender.
|210489|Sculk sensors are not activated upon pointed dripstone filling partially filled cauldrons.
|210496|Sculk sensors are not activated upon harvesting sweet berry bushes.
|210801|Wool incorrectly occludes the vibration of item frames being placed.
|212428|Sculk sensors are not activated upon cleaning items in water cauldrons.
|212430|Sculk sensors are not activated upon rain or snow filling partially filled cauldrons.
|213387|Sculk sensors don't detect endermen/shulkers teleporting from a place to another.
|220086|Sculk sensors do not detect using an axe to clear the wax/weathering of a copper block.
|220087|Sculk sensors do not detect using a honeycomb to wax copper.
|238716|The {{cd|minecraft:item.armor.equip_TYPE}} sound can be heard only by other players when taking armor off armor stands.
|246227|The {{cd|minecraft:item.armor.equip_TYPE}} sound can be heard only by other players when switching wearable items between hands.
|;dev
|249696|Certain void worlds fail to spawn the player on the stone platform.
|249748|The {{cd|minecraft:item.armor.equip_TYPE}} sound is played when giving wearable items to allays.
|250259|Warden AI doesn't function properly when it rides on entities.
|250641|Warden cannot despawn when stuck in lava or water.
|250941|Goats' horns don't snap on copper ore.
|250956|Baby goats with horns lose their horns when fed.
|251052|Wardens will not chase targets from a height.
|251314|Goats loaded from older worlds lose their horns.
|251336|Darkness fog flashes at high duration values.
|251412|Warden afflicting Darkness to players in the same team.
|251500|Wardens ignore {{nbt|byte|PersistenceRequired}} and dig away.
|251601|Darkness rendering incorrectly when reloading the game.
|251639|Warden emerging particles don't match up with block they emerge on the entire way.
|251646|{{cd|death.attack.sonic_boom.item}} displays raw translation string (is untranslated).
|251670|Villager sometimes won't refill their stock.
|251675|Mesa Mineshafts no longer generate with {{cmd|place|link=Commands/place (Java Edition)}} command outside of badlands biomes despite saying the structure has been generated successfully.
|251736|Reflected ghast fireball cannot hit the ghast.
|251824|Wardens aren't angered by being hit with damageless projectiles.
|251854|"It Spreads" advancement can be granted when killing a mob that does not give experience.
|;previous
|251860|The {{cd|item.armor.equip_generic}} sound is produced when giving items to allays.
|251862|Shift clicking the destroy item button in the creative inventory creates a vibration when there is nothing in your equipment slots.
|251864|The {{cd|item.armor.equip_generic}} sound is produced when filling water buckets with fish, axolotls, or tadpoles.
|251871|The {{cd|item.armor.equip_generic}} sound is produced and can only be heard by other players when switching items between hands.
|251873|Using {{cmd|item replace}} command can trigger Sculk Sensor unexpectedly.
|251876|Villagers produce armor equipping sound when previewing armor.
|251889|{{cd|io.netty.handler.codec.EncoderException}} when evaluating too many entity selectors in chat preview.
|251890|{{cd|run_command}} click events send value as command instead of chat message.
|251915|Milking cows, mooshrooms and goats plays gear equipping sound.
|251916|Eating food items that return empty containers plays gear equipping sound.
|251919|Equipping a player head, skull or carved pumpkin displays the generic "Gear equips" subtitle.
|251920|Taking a plant from a pot plays the gear equipping sound and subtitle.
|251921|Equipping horse armor onto a horse plays the "Gear equips" sound.
|251922|"Gear equips" sound plays when equipping or removing a saddle from a horse wearing horse armor.
|251924|Gear equipping sounds and subtitles are played when foxes pick up any item.
|251925|Gear equipping sounds and subtitles are played when dolphins throw around items.
|251927|Gear equipping sounds and subtitles are played when {{nbt|byte|CanPickUpLoot}} mobs pick up items.
|251928|Gear equips sound plays when filling a single bottle with honey.
|251929|Gear equips sound plays when filling a single bottle with water from a water source.
|251977|The {{cd|item.armor.equip_generic}} sound is produced when filling and emptying buckets with substances.
|252005|Skeleton spawn eggs make an armor equipment sound when used.
|252041|Gear equip sound plays when mobs spawn in with weapons or armor.
|252056|The {{cd|item.armor.equip_generic}} sound is produced when giving piglins gold ingots.
|252103|Gear equips sound plays when giving any item to an armor stand with arms.
}}</onlyinclude>
== Video ==
{{Slicedlime|Qf4ARtBgY_o}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19-pre2]]
[[es:Java Edition 1.19 Pre-release 2]]
[[fr:Édition Java 1.19 Pre-release 2]]
[[ja:Java Edition 1.19 Pre-release 2]]
[[pt:Edição Java 1.19 Pre-release 2]]
[[ru:1.19 Pre-release 2 (Java Edition)]]
[[zh:Java版1.19-pre2]]

79
wiki_backup/1.19-pre3.txt Normal file
View file

@ -0,0 +1,79 @@
{{Infobox version
|title=Minecraft 1.19 Pre-release 3
|image=1.19-pre2.jpg
|image2=Java Edition 1.19 Pre-release 3.png
|edition=Java
|type=Pre-release
|date=May 25, 2022
|jsonhash=aee623cf240961d604eda8e853c265f397ed4f1c |jsonfile=1.19-pre3
|clienthash=6dbfb4ceafd85dd01297c4d39fd26fe6c8452ba8
|clientmap=b7b683287ea5a4f0b7d3a33365f6cb9c216a71eb
|serverhash=0702387c3519cc23a5184893275d00c05abf056d
|servermap=3151a5cf8b4489876325973837302390c2352902
|parent=1.19
|prevparent=1.18.2
|prev=1.19 Pre-release 2
|next=1.19 Pre-release 4
|nextparent=1.19
}}<onlyinclude>
'''1.19 Pre-release 3''' (known as '''1.19-pre3''' in the launcher) is the third pre-release for [[Java Edition 1.19]], released on May 25, 2022,<ref>{{Mcnet|minecraft-1-19-pre-release-2|Minecraft 1.19 Pre-Release 3|May 25, 2022}}</ref> which makes tweaks, and fixes bugs.
== Changes ==
=== Blocks ===
; [[Sculk sensor]]
* {{cd|item_interact_start}} is no longer detectable as a vibration, to allow more specific actions be detected, like {{cd|drink}} or {{cd|eat}}.
=== Mobs ===
; [[Warden]]
* Wardens' sonic boom attack now bypasses the damage reduction by armor enchantments such as [[Protection]].
=== Non-mob entities ===
; [[Item frame]]
* Reverted the change made in [[22w15a]], which made a larger hitbox size when put a map inside it.
=== General ===
; [[Tags]]
* Removed {{cd|moss_carpet}} from the {{cd|#frogs_spawnable_on}} block tag.
* Removed {{cd|item_interact_start}} from the {{cd|d=and|#vibrations|#warden_can_listen}} game event tag.
== Fixes ==
{{fixes|fixedin=1.19 Pre-release 3
|;old
|209932|Sculk sensors only detect the last turtle egg being broken when being stepped on.
|210277|Sculk sensors are not activated upon chickens laying eggs.
|210278|Sculk sensors are not activated upon bees entering or leaving their hive or nest.
|214622|Sculk sensors do not detect daylight detector mode switching.
|;dev
|249094|Unexpected culling of inner sculk shrieker faces.
|249097|Sides and bottoms of sculk shrieker not culled by solid blocks.
|249230|Frogs prioritize eating entities over panicking when being damaged.
|250162|Placing a map in an item frame will break any intersecting paintings and item frames with a map inside.
|250238|Frogs attempt to pathfind to entities outside of their reach causing them to spin and twitch constantly.
|250983|Allays can get stuck and freeze inside non-full blocks.
|251220|Block lighting on extended parts are a lot darker in 22w17a compared to 1.18.2.
|251420|Demo Mode: The "Purchase Now!" link's destination is incorrect.
|251858|Subtitles are higher than in previous versions.
|251872|The game output and server console are logged with warnings regarding chat packets with invalid signatures when using entity selectors within commands.
|251878|Sculk sensors hearing items being dropped on the ground doesn't alert shriekers even if a player drops it.
|251968|{{cmd|execute}} running chat related commands logs "Received chat packet without valid signature" warning.
|252071|Warden still detects after death if signal is traveling before death.
|252078|Allays no longer flee or panic when taking damage.
}}</onlyinclude>
== Video ==
{{Slicedlime|8dTnnv8n53Q}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19-pre3]]
[[es:Java Edition 1.19 Pre-release 3]]
[[fr:Édition Java 1.19 Pre-release 3]]
[[ja:Java Edition 1.19 Pre-release 3]]
[[pt:Edição Java 1.19 Pre-release 3]]
[[ru:1.19 Pre-release 3 (Java Edition)]]
[[zh:Java版1.19-pre3]]

55
wiki_backup/1.19-pre5.txt Normal file
View file

@ -0,0 +1,55 @@
{{Infobox version
|title=Minecraft 1.19 Pre-release 5
|image=1.19-pre4.jpg
|image2=Java Edition 1.19 Pre-release 5.png
|edition=Java
|type=Pre-release
|date=June 1, 2022
|jsonhash=af6607252a13b3df876de97ebcd35f3386abbc5e |jsonfile=1.19-pre5
|clienthash=6534d0a953161da304a5e2c2e343bd10e275f96c
|clientmap=f91429881ca1ba1a971d52aa3fdb24ec421a2d90
|serverhash=1ba1b6389f00fa40a10af047fd7a76a9c68dba72
|servermap=d85139118898f70c27d6cd69fabd8f55246f684a
|parent=1.19
|prevparent=1.18.2
|prev=1.19 Pre-release 4
|next=1.19 Release Candidate 1
|nextparent=1.19
}}<onlyinclude>
'''1.19 Pre-release 5''' (known as '''1.19-pre5''' in the launcher) is the fifth and final pre-release for [[Java Edition 1.19]], released on June 1, 2022,<ref>{{Mcnet|minecraft-1-19-pre-release-4|Minecraft 1.19 Pre-Release 5|June 1, 2022}}</ref> which fixes bugs.
== Fixes ==
{{Fixes|fixedin=1.19 Pre-release 5
|;old
|252352|URL in {{samp|eula.txt}} (dedicated server) points to the wrong location.
|;dev
|249121|Sculk is missing subtitles for some sounds.
|249323|Modifying a world preset to not include overworld settings will not give a datapack error, but selecting the world type will instantly crash your game.
|250034|Standing on top of mud as it converts to clay causes the player to fall through or be pushed out of the block.
|250295|Allays head does not rotate to where it looks.
|251030|Standing on top of soul sand or mud that converts to sculk will cause entities to fall through it.
|251323|Mobs target emerging warden/ warden faces attacking mob while emerging if dealt melee damage.
|251594|Leads are leashed too high on allays.
|251726|Java runtime manifest is missing when launching Minecraft.
|252038|Warden attacks immediately if hit during emerging animation.
|252108|Eating a food item no longer opens the piston doors in {{samp|city_center_2}}.
|252157|{{nbt|string|CustomName}} NBT tag still prevents wardens from digging down.
}}</onlyinclude>
== Video ==
{{Slicedlime|LEzCa_GwVoc}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19-pre5]]
[[es:Java Edition 1.19 Pre-release 5]]
[[fr:Édition Java 1.19 Pre-release 5]]
[[ja:Java Edition 1.19 Pre-release 5]]
[[pt:Edição Java 1.19 Pre-release 5]]
[[ru:1.19 Pre-release 5 (Java Edition)]]
[[zh:Java版1.19-pre5]]

45
wiki_backup/1.19-rc2.txt Normal file
View file

@ -0,0 +1,45 @@
{{Infobox version
|title=Minecraft 1.19 Release Candidate 2
|image=1.19-rc1.jpg
|image2=Java Edition 1.19 Release Candidate 2.png
|edition=Java
|type=Release candidate
|date=June 3, 2022
|jsonhash=b4cf3072159926ba96a0ede89613bf23d5e61d82 |jsonfile=1.19-rc2
|clienthash=a984bc5036a9f0ace8da1040614996abcda5f2ad
|clientmap=a0d9727770b48ea5750e794667017d71af4e8e00
|serverhash=d3250b1e5e0e8762ec8ceae034d5f229965d00d3
|servermap=a6441621bc501f5337e54608a942cf4a2c262e6a
|parent=1.19
|prevparent=1.18.2
|prev=1.19 Release Candidate 1
|next=
|nextparent=1.19
}}<onlyinclude>
'''1.19 Release Candidate 2''' (known as '''1.19-rc2''' in the launcher) is the second and the final release candidate for [[Java Edition 1.19]], released on June 3, 2022,<ref>{{Mcnet|minecraft-1-19-release-candidate-1|Minecraft 1.19 Release Candidate 2|June 3, 2022}}</ref> which fixes an unspecified crash.
== Fixes ==
{{fixes|fixedin=1.19 Release Candidate 2|otherissuescount=1
|;old
|228944|Minecraft 1.17 crashes upon opening new world on Apple M1, even with Rosetta.
|249558|All versions crash on M1 Mac with JVM crash when attempting to launch.
}}
; Other
* Fixed a crash.</onlyinclude>
== Video ==
{{Slicedlime|cnTIXaLaDcg}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19-rc2]]
[[es:Java Edition 1.19 Release Candidate 2]]
[[ja:Java Edition 1.19 Release Candidate 2]]
[[pt:Edição Java 1.19 Release Candidate 2]]
[[ru:1.19 Release Candidate 2 (Java Edition)]]
[[zh:Java版1.19-rc2]]

View file

@ -0,0 +1,82 @@
{{Infobox version
|title=Minecraft 1.19.1 Pre-release 1
|image=1.19.1-pre1.jpg
|image2=Java Edition 1.19.1 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=June 21, 2022
|jsonhash=ef15d978f717a715b8671b3b403fbe29e4e11624
|clienthash=6031a555a696b88b6dd39dd6ef034d70e7115a3c
|clientmap=b8b77a71ae0e9498d7fce7ebb8b6496718589eea
|serverhash=a4d30a572176e81e115d36ec71bd2e67798ed14e
|servermap=2c23942beb9a74e6da5c960aeeeee7b39c1632ee
|parent=1.19.1
|prevparent=1.19
|prev=22w24a
|next=1.19.1 Release Candidate 1
|nextparent=1.19.1
}}<onlyinclude>
'''1.19.1 Pre-release 1''' (known as '''1.19.1-pre1''' in the launcher) is the first pre-release for [[Java Edition 1.19.1]], released on June 21, 2022,<ref>{{Mcnet|minecraft-1-19-1-pre-release-1|Minecraft 1.19.1 Pre-Release 1|June 21, 2022}}</ref> which fixes bugs.
== Changes ==
=== Blocks ===
; [[Sculk sensor]]
* No longer reacts to the {{cd|d=and|jukebox_play|jukebox_stop_play}} game event.
=== Mobs ===
; [[Allay]]
* Allay duplication now has a 5-minute cooldown.
=== General ===
[[File:Permanently Banned.png|thumb|right|The screen that appears in-game when an account is banned. In this case, the ban is permanent.]]
; [[Social interactions screen]]
* Reported players can now be banned from online play and Realms after moderator review.
* The game shows a notice screen on startup if a player has been banned from online play.
** The reason and the duration of the ban is shown on this screen.
; [[Tags]]
* Removed {{cd|d=and|jukebox_play|jukebox_stop_play}} game events from the {{cd|d=and|#vibrations|#warden_can_listen}} game event tags.
== Fixes ==
{{fixes|fixedin=1.19.1 Pre-release 1
|;From 1.19
|249973|Loading resource packs is significantly slower in 1.19.
|252327|World list fails to load after restarting game and deleting a world.
|252508|Realms worldgen type missing language string.
|253055|Resource packs causing each WeighedSoundEvents to duplicate Sounds
|;previous
|253102|Chat reporting uses "Messages" for one message
|253105|Chat report category scroll bar intersects the selected option outline
|253108|Selection boxes within the "Select Report Category" menu aren't vertically centered with the text inside them
|253109|The descriptions of report categories can overlap the "Description:" subtitle
|253110|Text within the "Discard report and comments?" menu isn't horizontally centered
|253111|You cannot use {{key|Ctrl+Home}} or {{key|Ctrl+End}} to navigate to the beginning or end of text within the "Report Chat" menu
|253113|Chat message content can extend past the outline of a button and past the scroll bar
|253123|The button within the "Sending your report" menu changes upon resizing the game window
|253126|The scroll bar within the "Select Chat Messages to Report" menu sometimes resets its position to the bottom of the list after scrolling upwards
|253127|Reason is not provided when chat report creation is not able to be started
|253134|Allays from older worlds dont duplicate
|253176|The character indicator symbol within the “Report Chat” menu is untranslatable
|253178|The word “Non-consensual” is spelled as “Non-consentual” within the {{cd|gui.abuseReport.reason.non_consensual_intimate_imagery}} string
|253183|The word “Unrelated” within the {{cd|gui.chatSelection.fold}} string is incorrectly capitalized
|253185|The {{key|Esc}} cannot be used to exit the “Sending your report” menu
|253191|Particles produced from allays duplicating cannot be seen by other players
}}</onlyinclude>
== Video ==
{{Slicedlime|rbn5dW57pBM}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19.1-pre1]]
[[es:Java Edition 1.19.1 Pre-release 1]]
[[fr:Version Java 1.19.1 Pre-release 1]]
[[ja:Java Edition 1.19.1 Pre-release 1]]
[[pt:Edição Java 1.19.1 Pre-release 1]]
[[ru:1.19.1 Pre-release 1 (Java Edition)]]
[[zh:Java版1.19.1-pre1]]

View file

@ -0,0 +1,80 @@
{{Infobox version
|title=Minecraft 1.19.1 Pre-release 3
|image=1.19.1-pre3.jpg
|image2=Java Edition 1.19.1 Pre-release 3.png
|edition=Java
|type=Pre-release
|date=July 6, 2022
|jsonhash=4a91baff04c8c13f718d3e6aa599b83174f3cd05 |jsonfile=1.19.1-pre3
|clienthash=77dc5935a41efe31ffb609c748d523da558bca8a
|clientmap=33e65a967ed45dcbeb8bee999a811c015450536b
|serverhash=afbc14b0518843f189ed3ddd00f01b5881ef6513
|servermap=37aff151a2543fe2c0769a4b6e84ae13bcebf55e
|parent=1.19.1
|prevparent=1.19
|prev=1.19.1 Pre-release 2
|next=1.19.1 Pre-release 4
|nextparent=1.19.1
}}<onlyinclude>
'''1.19.1 Pre-release 3''' (known as '''1.19.1-pre3''' in the launcher) is the third pre-release for [[Java Edition 1.19.1]], released on July 6, 2022,<ref>{{Mcnet|minecraft-1-19-1-pre-release-3|Minecraft 1.19.1 Pre-Release 3|July 6, 2022}}</ref> which adds a [[splash]] commemorating [[wikipedia:Technoblade|Technoblade]], makes tweaks to chats, and fixes bugs.
== Additions ==
=== General ===
; [[Splash]]
* Added the splash "Technoblade never dies!" for the commemoration of [[wikipedia:Technoblade|Technoblade]].
== Changes ==
=== General ===
; [[Chat]]
* Moved the chat scrollbar to the right of the chat window.
* System messages are now displayed with a gray color indicator.
* The {{cd|msg_command}} chat type has been split apart into {{cd|msg_command_incoming}} and {{cd|msg_command_outgoing}}.
* The {{cd|team_name}} chat type parameter has been renamed to {{cd|target}}.
** This chat type parameter is now used by {{cd|msg_command_outgoing}}.
; Protocol
* Custom servers can set their own auto-completion options for regular chat via a new network packet.
; [[Social interactions screen]]
* The list of players on the Social Interactions screen now places entries for players with recently seen messages at the top of the list.
* Updated descriptions of the following report categories:
** Harassment or bullying
*** Someone is shaming, attacking, or bullying you or someone else. This includes when someone is repeatedly trying to contact you or someone else without consent or posting private personal information about you or someone else without consent <ins class="tc-yes">("doxing")</ins>.
** Imminent harm - Threat to harm others<!-- don't change it to "Suicide" category, this is a bug, see MC-253997 -->
*** Someone is threatening to harm <del class="tc-no">you or someone else</del> <ins class="tc-yes">themselves in real life or talking about harming themselves</ins> in real life.
** Terrorism or violent extremism
*** Someone is talking about, promoting, or threatening <del class="tc-no">to commit</del> <ins class="tc-yes">with</ins> acts of terrorism or violent extremism for political, religious, ideological, or other reasons.
== Fixes ==
{{fixes|fixedin=1.19.1 Pre-release 3
|;From 1.19
|253214|Tooltips will become offset in certain cases.
|;dev
|253182|The second instance of a reflexive pronoun is used incorrectly within the {{cd|gui.abuseReport.reason.self_harm_or_suicide.description}} string.
|253223|A preposition is incorrectly used within the {{cd|gui.abuseReport.reason.terrorism_or_violent_extremism.description}} string.
|253496|{{cmd|execute as ''player'' run say}} counts to the report system.
|;previous
|253742|The chat scroll bar overlaps the colored indicators used to show the trust status of messages.
|253773|Whispers appear as modified by the server.
}}</onlyinclude>
== Gallery ==
<gallery>
Technoblade never dies!.png|The splash "Technoblade never dies!" as it appears on the menu screen
</gallery>
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19.1-pre3]]
[[es:Java Edition 1.19.1 Pre-release 3]]
[[fr:Édition Java 1.19.1 Pre-release 3]]
[[ja:Java Edition 1.19.1 Pre-release 3]]
[[lzh:爪哇版一點一九點一之預三]]
[[pt:Edição Java 1.19.1 Pre-release 3]]
[[ru:1.19.1 Pre-release 3 (Java Edition)]]
[[zh:Java版1.19.1-pre3]]

View file

@ -0,0 +1,53 @@
{{Infobox version
|title=Minecraft 1.19.1 Pre-release 4
|image=1.19.1-pre3.jpg
|image2=Java Edition 1.19.1 Pre-release 4.png
|edition=Java
|type=Pre-release
|date=July 8, 2022
|jsonhash=8dbf3306b43177f9a39a97364215f80801f77db3 |jsonfile=1.19.1-pre4
|clienthash=bb3e72a47ea72c2de1ed0b926166ea9b36fd666e
|clientmap=7f968bcafddf9df3a8d5eb0f93a48a64b1ab1a84
|serverhash=0f7f0c876024d0a84cb50547f72fe81dbfbfdb19
|servermap=000d3e6fa2d830cd3a1612ab42f56bea224fb2b6
|parent=1.19.1
|prevparent=1.19
|prev=1.19.1 Pre-release 3
|next=1.19.1 Pre-release 5
|nextparent=1.19.1
}}<onlyinclude>
'''1.19.1 Pre-release 4''' (known as '''1.19.1-pre4''' in the launcher) is the fourth pre-release for [[Java Edition 1.19.1]], released on July 8, 2022,<ref>{{Mcnet|minecraft-1-19-1-pre-release-3|Minecraft 1.19.1 Pre-Release 4|July 8, 2022}}</ref> which makes tweaks to chats, and fixes bugs.
== Changes ==
=== General ===
; [[Chat]]
* Insecure chat messages logged in the server are prefixed with a <code>[Not Secure]</code> tag.
* The order of chat messages are now cryptographically verified.
** This is used for validating the context of chat messages for player reports.
; Protocol
* Custom servers can hide player chat messages from display via a new network packet.
** This does not delete player chat messages from chat logs.
== Fixes ==
{{fixes|fixedin=1.19.1 Pre-release 4
|;dev
|253743|The server console doesn't state if chat messages aren't secure or have been modified.
|253813|Chat commands with entity selectors often reported as "This message is not secure".
}}</onlyinclude>
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19.1-pre4]]
[[es:Java Edition 1.19.1 Pre-release 4]]
[[fr:Édition Java 1.19.1 Pre-release 4]]
[[ja:Java Edition 1.19.1 Pre-release 4]]
[[lzh:爪哇版一點一九點一之預四]]
[[pt:Edição Java 1.19.1 Pre-release 4]]
[[ru:1.19.1 Pre-release 4 (Java Edition)]]
[[zh:Java版1.19.1-pre4]]

View file

@ -0,0 +1,83 @@
{{Infobox version
|title=Minecraft 1.19.1 Pre-release 5
|image=1.19.1-pre5.jpg
|image2=Java Edition 1.19.1 Pre-release 5.png
|edition=Java
|type=Pre-release
|date=July 15, 2022
|jsonhash=3e53dbf54f22f38d132c9328b12e8e604d2e8a28 |jsonfile=1.19.1-pre5
|clienthash=151f225ed7b76e434a5da19a0bc9d094699f1323
|clientmap=abf955fdd57905651c59f2fb4fb6bc5cecaea302
|serverhash=33cdf9ceaaedebb0a71ca5f4d85d4e7198c09b8e
|servermap=ec21339a000113979d329583cfddd5500afcbc63
|parent=1.19.1
|prevparent=1.19
|prev=1.19.1 Pre-release 4
|next=1.19.1 Pre-release 6
|nextparent=1.19.1
}}<onlyinclude>
'''1.19.1 Pre-release 5''' (known as '''1.19.1-pre5''' in the launcher) is the fifth pre-release for [[Java Edition 1.19.1]], released on July 15, 2022,<ref>{{Mcnet|minecraft-1-19-1-pre-release-5|Minecraft 1.19.1 Pre-Release 5|July 15, 2022}}</ref> which makes tweaks to chats and fixes bugs.
== Changes ==
=== General ===
; [[Chat]]
* When writing chat messages, the signing status of the displayed chat messages is shown with a colored indicator.
** The indicator either appears to the left of the chat input field, or to the left of the chat preview if chat preview is being used.
** The indicator is green when the displayed message is signed.
** The indicator is orange when chat preview is enabled and a preview is waiting to be signed.
* The {{cd|team_msg_command}} chat type has been split apart into {{cd|team_msg_command_incoming}} and {{cd|team_msg_command_outgoing}}.
; Chat preview
* The background of the chat preview also displays slightly faded when a preview is waiting to be signed.
* The "On Modified" mode no longer displays previews if the message has not been modified by the server.
* Chat preview is now enabled in singleplayer, and is displayed when using commands that have selector substitution such as {{cmd|say}}.
* Previewed hover events and click events are now highlighted with a solid background.
; [[Options]]
* Added "On Send" chat preview option for updating chat previews only when attempting to send a message.
** To confirm sending a message, a second hit of the {{key|Enter}}/{{key|Return}} key is required.
** The previous "ON" setting has been renamed to "On Modified".
; [[Social interactions screen]]
* Updated descriptions of the following report categories:
** Imminent harm - Self-harm or suicide
*** Someone is threatening to harm themselves in real life<del class="tc-no">,</del> or talking about harming <del class="tc-no">yourself</del> <ins class="tc-yes">themselves</ins> in real life.
** Imminent harm - Threat to harm others
*** Someone is threatening to harm <del class="tc-no">themselves in real life or talking about harming themselves</del> <ins class="tc-yes">you or someone else</ins> in real life.
** Terrorism or violent extremism
*** Someone is talking about, promoting, or threatening <del class="tc-no">with</del> <ins class="tc-yes">to commit</ins> acts of terrorism or violent extremism for political, religious, ideological, or other reasons.
== Fixes ==
{{fixes|fixedin=1.19.1 Pre-release 5
|;From released versions before 1.19
|130243|{{cmd|debug stop}} message uses OS locale specific number formatting.
|149047|Scroll Sensitivity slider label uses OS locale for number formatting.
|;From 1.19
|250034|Standing on top of mud as it converts to clay causes the player to fall through or be pushed out of the block.
|252546|Poor audio quality compared to 1.18.2.
|252702|Game crashes when trying to launch 1.19 when system is in Arabic, Persian, or adjacent formats.
|253888|Messages that servers have tampered with through chat reporting are signed and reportable.
|254228|Client data generator crashes due to locale-dependent {{cd|String.format}}.
|;dev
|253223|A preposition is incorrectly used within the {{cd|gui.abuseReport.reason.terrorism_or_violent_extremism.description}} string.
|253950|Sending a chat message too fast after typing it fails to sign the eventual proper chat preview.
|253997|The current description of "Imminent harm - Threat to harm others" report category seems not matching its title.
|;previous
|254089|Chat Preview components allow server to "hide" content.
}}</onlyinclude>
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19.1-pre5]]
[[es:Java Edition 1.19.1 Pre-release 5]]
[[fr:Édition Java 1.19.1 Pre-release 5]]
[[ja:Java Edition 1.19.1 Pre-release 5]]
[[lzh:爪哇版一點一九點一之預五]]
[[pt:Edição Java 1.19.1 Pre-release 5]]
[[ru:1.19.1 Pre-release 5 (Java Edition)]]
[[zh:Java版1.19.1-pre5]]

View file

@ -0,0 +1,69 @@
{{Infobox version
|title=Minecraft 1.19.1 Pre-release 6
|image=1.19.1-pre6.jpg
|image2=Java Edition 1.19.1 Pre-release 6.png
|edition=Java
|type=Pre-release
|date=July 20, 2022
|jsonhash=223c5f970cc03a3a299a5bf5b2b4b38610111667 |jsonfile=1.19.1-pre6
|clienthash=2f5635cef3238001a27f5f5899f5f1e753424fb8
|clientmap=bbc9f66712f71b3556f9a26dad7485295412b276
|serverhash=2cad39169c1a505ffca1049b236a4ddaf62c617d
|servermap=528d00ab2f716152f7f5e4184c7ff09fc3209ddd
|parent=1.19.1
|prevparent=1.19
|prev=1.19.1 Pre-release 5
|next=1.19.1 Release Candidate 2
|nextparent=1.19.1
}}<onlyinclude>
'''1.19.1 Pre-release 6''' (known as '''1.19.1-pre6''' in the launcher) is the sixth and final pre-release for [[Java Edition 1.19.1]], released on July 20, 2022,<ref>{{Mcnet|minecraft-1-19-1-pre-release-6|Minecraft 1.19.1 Pre-Release 6|July 20, 2022}}</ref> which makes small tweaks to [[sculk sensor]]s and [[sculk catalyst]]s and fixes bugs.
== Changes ==
=== Blocks ===
; [[Sculk catalyst]]s
* Now drop 5 XP instead of 20 XP.
=== Command format ===
; General
* The {{cd|run_command}} click event for text components no longer supports any commands that send chat messages.
** {{cmd|tellraw}} should be used instead.
=== General ===
; [[Chat]]
* Colors of the signing indicators for sending a message have been adjusted for improved accessibility.
** The indicator is light blue instead of green when the displayed message is signed.
** The indicator is light yellow instead of orange when chat preview is enabled and a preview is waiting to be signed.
== Fixes ==
{{fixes|fixedin=1.19.1 Pre-release 6
|;From released versions before 1.19
|148149|Linux game crash when opening links.
|207077|Crash on loading pre-1.13 world with noteblock + {{cd|note}} NBT in inventory.
|235614|Reference to unexisting predicate in a datapack causes {{cd|java.lang.NullPointerException}}.
|252265|{{cd|--server}} argument causes {{cd|java.lang.NullPointerException}} crash on some servers.
|;From 1.19
|252190|Player-dropped items creating vibrations depends on you sneaking at the moment the item hits the ground, instead of when you threw the item.
|252258|Wool block/carpet items generate vibrations unless thrown by crouching players.
|253402|Game crash when you {{key|Shift}} right-click on an item in your hotbar to the chest at the same time as you die.
|254349|Crash when putting dye into a loom on a modded server.
|;previous
|254255|Unable to text in chat with Chat Preview On send while sleeping.
|254261|The background opacity box of the chat preview field renders behind the "Leave Bed" button when sleeping in beds.
|254284|Sending chat packets with invalid message type id crashes the game.
}}</onlyinclude>
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19.1-pre6]]
[[es:Java Edition 1.19.1 Pre-release 6]]
[[fr:Édition Java 1.19.1 Pre-release 6]]
[[ja:Java Edition 1.19.1 Pre-release 6]]
[[lzh:爪哇版一點一九點一之預六]]
[[pt:Edição Java 1.19.1 Pre-release 6]]
[[ru:1.19.1 Pre-release 6 (Java Edition)]]
[[zh:Java版1.19.1-pre6]]

View file

@ -0,0 +1,79 @@
{{Infobox version
|title=Minecraft 1.19.1 Release Candidate 1
|image=1.19.1-rc1.jpg
|image2=Java Edition 1.19.1 Release Candidate 1.png
|edition=Java
|type=Release Candidate
|date=June 23, 2022
|jsonhash=7dfa5b74bfc31004f98e55a8790bbc5ef892d6fe
|clienthash=d1a0318001ad37b322f56c29582011e0911b2b49
|clientmap=f45b5b9218548772d45f4cb029d0249879895dfb
|serverhash=71a6d4c634de517ab1b6c2db8b743cbc831d9794
|servermap=cd109fe35e99982bc443fbff21a1c5d12beca422
|parent=1.19.1
|prevparent=1.19
|prev=1.19.1 Pre-release 1
|next=1.19.1 Pre-release 2
|nextparent=1.19.1
}}<onlyinclude>
'''1.19.1 Release Candidate 1''' (known as '''1.19.1-rc1''' in the launcher) is the first release candidate for [[Java Edition 1.19.1]], released on June 23, 2022,<ref>{{Mcnet|minecraft-1-19-1-release-candidate-1|Minecraft 1.19.1 Release Candidate 1|June 23, 2022}}</ref> which updates the categories for chat reporting and fixes bugs.
== Changes ==
=== Command format ===
; General
* The {{cd|run_command}} click event for text components no longer supports sending chat messages directly.
** Only commands are supported, so a command such as {{cmd|say}} should be used instead.
** This means values now always need to be {{cd|/}}-prefixed.
=== General ===
; [[Debug screen]]
* The "Blending" row now disappears when chuck that the player is in uses the new method, instead of displaying "Blending: New".
; [[Social interactions screen]]
* Updated the categories for chat reporting.
** Removed the "Extreme violence or gore", "Nudity or pornography", and "Profanity" categories.
** Updated descriptions of the following categories:
*** Defamation, impersonation, or false information
**** Someone is damaging someone else's reputation, pretending to be someone they're not, or sharing false information<ins class="tc-yes"> with the aim to exploit or mislead others</ins>.
*** Drugs or alcohol
**** Someone is <del class="tc-no">talking about or otherwise promoting drugs or alcohol</del> <ins class="tc-yes">encouraging others to partake in illegal drug related activities or encouraging underage drinking</ins>.
*** Harassment or bullying
**** Someone is shaming, attacking, or bullying you or someone else. This includes when someone is repeatedly trying to contact you or someone else without consent <ins class="tc-yes"> or posting private personal information about you or someone else without consent</ins>.
*** Terrorism or violent extremism
**** Someone is talking about, promoting, or threatening <del class="tc-no">with</del> <ins class="tc-yes">to commit</ins> acts of terrorism or violent extremism for political, religious, ideological, or other reasons.
* Decreased the maximum number of selected messages from 10 to 4, and changed the amount of chat context sent with each chat report from 4 older messages and 2 newer messages to 7 older messages and 2 newer messages.
== Fixes ==
{{fixes|fixedin=1.19.1 Release Candidate 1
|;From 1.19
|93254|Color in text prompt using commands.
|250020|Allay doesn't ignore items when {{cd|mobGriefing}} is set to {{cd|false}}.
|252511|Bedrock not generating on the new blending border between old and new blending.
|252987|Illegal character {{cd|\n}} in text component {{cd|clickEvent}}.
|253336|Using the eye of ender "crashes" game in the seed: {{cd|-3721742095548798177}}.
|;dev
|253114|Selection boxes within the "Select Chat Messages to Report" menu don't disappear when deselecting fields after reentering the menu.
|253188|Selection boxes within the "Select Chat Messages to Report" menu differ in size ever so slightly depending on how they're selected.
|253225|Selection boxes of fields within player reporting menu lists don't contain white outlines when selected using the {{key|Tab}} key.
|253227|Players can only be reported using the reporting system if they're present within the world.
|;previous
|253422|The selection of the "Please report breaches of our Community Standards" text within the "Select Report Category" menu is slightly confusing due to the words "Community Standards" being underlined by default.
}}</onlyinclude>
== Video ==
{{Slicedlime|eKh1ONdVT34}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19.1-rc1]]
[[es:Java Edition 1.19.1 Release Candidate 1]]
[[fr:Édition Java 1.19.1 Release Candidate 1]]
[[ja:Java Edition 1.19.1 Release Candidate 1]]
[[pt:Edição Java 1.19.1 Release Candidate 1]]
[[ru:1.19.1 Release Candidate 1 (Java Edition)]]
[[zh:Java版1.19.1-rc1]]

View file

@ -0,0 +1,46 @@
{{Infobox version
|title=Minecraft 1.19.1 Release Candidate 3
|image=1.19.1-rc3.jpg
|image2=Java Edition 1.19.1 Release Candidate 3.png
|edition=Java
|type=Release Candidate
|date=July 26, 2022
|jsonhash=796c7794cc99bd6ba4c70725f1e73a003aee79d3 |jsonfile=1.19.1-rc3
|clienthash=6a0c009383e7285395c44bc3f6d46b6bbdef23de
|clientmap=15c2a5e85a40e6155480347cc3c5721eb06a84a4
|serverhash=e7ff323e06ccb32083b7cd2472dce3b9056e2940
|servermap=f40d4f03679b8691b14251761c7ba20965961f5e
|parent=1.19.1
|prevparent=1.19
|prev=1.19.1 Release Candidate 2
|next=
|nextparent=1.19.1
}}<onlyinclude>
'''1.19.1 Release Candidate 3''' (known as '''1.19.1-rc3''' in the launcher) is the third and final release candidate for [[Java Edition 1.19.1]], released on July 26, 2022,<ref>{{Mcnet|minecraft-1-19-1-release-candidate-3|Minecraft 1.19.1 Release Candidate 3|July 26, 2022}}</ref> which makes a change to chat, and fixes a bug.
== Changes ==
=== General ===
; [[Chat]]
* The chat input box no longer applies to custom font glyphs with negative advances, or glyphs with advances greater than 32.
== Fixes ==
{{fixes|fixedin=1.19.1 Release Candidate 3
|;previous
|254529|Warning and information toasts can overlap one another.
}}</onlyinclude>
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19.1-rc3]]
[[es:Java Edition 1.19.1 Release Candidate 3]]
[[fr:Édition Java 1.19.1 Release Candidate 3]]
[[ja:Java Edition 1.19.1 Release Candidate 3]]
[[lzh:爪哇版一點一九點一之候三]]
[[pt:Edição Java 1.19.1 Release Candidate 3]]
[[ru:1.19.1 Release Candidate 3 (Java Edition)]]
[[zh:Java版1.19.1-rc3]]

View file

@ -0,0 +1,44 @@
{{Infobox version
|title=Minecraft 1.19.2 Release Candidate 2
|image=1.19.2-rc1.jpg
|image2=Java Edition 1.19.2 Release Candidate 2.png
|edition=Java
|type=Release candidate
|date=August 5, 2022
|jsonhash=d6dea5c33703d921e0cca5352a6ee1e25524cf50 |jsonfile=1.19.2-rc2
|clienthash=b7eee7ae9fc84f34833ac73225ec8db994a2b53e
|clientmap=89dfd59bfda5c1ed3b5079af41935fdc685043bd
|serverhash=93649d39350077f998296138964e4591d4571140
|servermap=beac95ba5369e8dd3db853401553fee0bb3d5b35
|parent=1.19.2
|prevparent=1.19.1
|prev=1.19.2 Release Candidate 1
|next=
|nextparent=1.19.2
}}<onlyinclude>
'''1.19.2 Release Candidate 2''' (known as '''1.19.2-rc2''' in the launcher) is the second and the final release candidate for [[Java Edition 1.19.2]], released on August 5, 2022,<ref>{{Mcnet|minecraft-1-19-2-release-candidate-1|Minecraft 1.19.2 Release Candidate 2|August 5, 2022}}</ref> which fixes a crash issue in the social interactions screen.<ref name="article_1.19.2">{{Mcnet|minecraft-java-edition-1-19-2|Minecraft 1.19.2|August 5, 2022}}</ref>
== Fixes ==
{{fixes|fixedin=1.19.2 Release Candidate 1|otherissuescount=1}}
; Other
* Fixed a crash in the social interactions screen.<ref name="article_1.19.2"/></onlyinclude>
== Trivia ==
* After this release during the same day, 1.19.2 was released making the release date for the version which the release candidate is for, the shortest.
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[cs:Java Edice 1.19.2 Release Candidate 2]]
[[de:1.19.2-rc2]]
[[es:Java Edition 1.19.2 Release Candidate 2]]
[[fr:Édition Java 1.19.2 Release Candidate 2]]
[[ja:Java Edition 1.19.2 Release Candidate 2]]
[[pt:Edição Java 1.19.2 Release Candidate 2]]
[[ru:1.19.2 Release Candidate 2 (Java Edition)]]
[[uk:1.19.2 Release Candidate 2 (Java Edition)]]
[[zh:Java版1.19.2-rc2]]

124
wiki_backup/1.19.3-pre1.txt Normal file
View file

@ -0,0 +1,124 @@
{{Infobox version
|title=Minecraft 1.19.3 Pre-release 1
|image=1.19.3-pre1.jpg
|image2=Java Edition 1.19.3 Pre-release 1.png
|edition=Java
|type=Pre-release
|date=November 22, 2022
|jsonhash=c37872d2ed817ef3c76e8914e1b2c20662f3835c |jsonfile=1.19.3-pre1
|clienthash=57a23e575a34f24aa84f3d54fbf4ddf9940a2c24
|clientmap=a20bf6c75fb17e98812e01828c0ef47bf22e1c88
|serverhash=046fee78cd174105cb9b958a8459c0405ab19959
|servermap=b2cf842b08789a8ac4748969c2cec2eae48b6101
|parent=1.19.3
|prevparent=1.19.2
|prev=22w46a
|next=1.19.3 Pre-release 2
|nextparent=1.19.3
}}<onlyinclude>
'''1.19.3 Pre-release 1''' (known as '''1.19.3-pre1''' in the launcher) is the first pre-release for [[Java Edition 1.19.3]], released on November 22, 2022,<ref>{{Mcnet|minecraft-1-19-3-pre-release-1|Minecraft 1.19.3 Pre-Release 1|November 22, 2022}}</ref> which adds some sub-predicates, the experimental ability for [[player head]]s playing custom sounds when on a [[note block]], a new syntax for {{cmd|fillbiome}}, and fixes bugs.
== Additions ==
=== Command format ===
; {{cmd|fillbiome}}
* Now supports a filtered form.
** The syntax in this case: {{cmd|link=none|fillbiome [<from>] [<to>] [<biome>] replace [<filter>]}}
*** <code>filter</code>: A biome or biome tag to replace.
=== General ===
; [[Predicate]]
* Added new entity sub-predicates for some entity types with variants:
** <code>axolotl</code>
*** <code>variant</code> - values: <code>lucy</code>, <code>wild</code>, <code>gold</code>, <code>cyan</code>, <code>blue</code>.
** <code>boat</code>
*** Works for all [[boat]]s and all [[boat with chest]]s.
*** <code>variant</code> - values: <code>oak</code>, <code>spruce</code>, <code>birch</code>, <code>jungle</code>, <code>acacia</code>, <code>dark_oak</code>, <code>mangrove</code>, <code>bamboo</code>.
** <code>fox</code>
*** <code>variant</code> - values: <code>red</code>, <code>snow</code>.
** <code>mooshroom</code>
*** <code>variant</code> - values: <code>red</code>, <code>brown</code>.
** <code>painting</code>
*** <code>variant</code> - values: see <code>painting_variant</code> registry.
** <code>rabbit</code>
*** <code>variant</code> - values: <code>brown</code>, <code>white</code>, <code>black</code>, <code>white_splotched</code>, <code>gold</code>, <code>salt</code>, <code>evil</code>.
** <code>horse</code>
*** <code>variant</code> - values: <code>white</code>, <code>creamy</code>, <code>chestnut</code>, <code>brown</code>, <code>black</code>, <code>gray</code>, <code>dark_brown</code>.
*** Markings are separate value and not matched.
** <code>llama</code>
*** <code>variant</code> - values: <code>creamy</code>, <code>white</code>, <code>brown</code>, <code>gray</code>.
** <code>villager</code>
*** <code>variant</code> - values: see <code>villager_type</code> registry.
*** Also works for [[zombie villager]]s.
*** Profession and level are separate values and not matched.
** <code>parrot</code>
*** <code>variant</code> - values: <code>red_blue</code>, <code>blue</code>, <code>green</code>, <code>yellow_blue</code>, <code>gray</code>.
** <code>tropical_fish</code>
*** <code>variant</code> - values: <code>kob</code>, <code>sunstreak</code>, <code>snooper</code>, <code>dasher</code>, <code>brinely</code>, <code>spotty</code>, <code>flopper</code>, <code>stripey</code>, <code>glitter</code>, <code>blockfish</code>, <code>betty</code>, <code>clayfish</code>.
; [[Splash]]es
* Added the following splash text:
** "Made with lave!"{{sic}}
== Changes ==
=== Mob ===
; [[Vex]]
* Slightly changed its texture.
== Experimental ==
These changes only take effect when the 1.20 experimental data pack is enabled.
=== Changes ===
==== Blocks ====
; [[Player head]]
* Now can contain a {{nbt|string|note_block_sound}} NBT tag.
** Must be a [[resource location]] for a valid sound event.
** When present, this determines the sound a [[note block]] makes when the head is placed on top of it.
== Fixes ==
{{fixes|fixedin=1.19.3 Pre-release 1
|;From released versions before 1.19
|156663|Villager pathfinding broken in water.
|177596|Weaponsmith working subtitle is "Grindstone used" instead of "Weaponsmith works".
|177676|Armorer working subtitle is "Blast Furnace crackles" instead of "Armorer works".
|245697|Certain mobs can't get out of water that is at least two blocks deep.
|;From 1.19.2
|255133|Extra copper ore generates in deep dark.
|;dev
|256481|<code>minecraft.used:minecraft.BOOK_TYPE</code> doesn't increase when placing books onto chiseled bookshelves.
|256679|Axolotls commonly hesitate when avoiding danger and occasionally start pathfinding in dangerous directions.
|256883|Elements within the game menu are now positioned slightly lower than they were in previous versions.
|257341|Vex texture does not utilize translucency.
|257349|Vex does not sit in boats and minecarts properly anymore.
|257368|Not a valid port error in Open to LAN doesn't show if port is <1024.
|257373|The cursor in the port number text box doesn't blink.
|257374|The word "number" isn't capitalized in "Port number".
|257386|Inventory menu has broken textures with Programmer Art enabled.
|257506|Top and bottom texture of chiseled bookshelf rotates depending on placement.
|257525|Allay movement AI is broken in 22w42a+ causing them to sometimes spin mid-air.
|;previous
|257617|You cannot scroll with the mouse wheel on the telemetry screen after clicking the "Open my data" or "Data collection" button.
|257618|The word "pair" uses the incorrect verb form within the <code>telemetry.event.world_loaded.description</code> string.
|257619|Baby piglins and zombified piglins take damage when they hit their head on a block.
|257625|Piglin Head placed on noteblock play the piglin angry sound instead of the piglin ambient sound.
|257648|The {{cmd|fillbiome}} command can result in flickering biome colors.
|257658|Sculk sensors are not activated upon taking books from chiseled bookshelves.
|257663|The "Hide messages" button in the social interactions menu can now no longer be toggled due to it being executed twice upon being pressed.
}}</onlyinclude>
== Video ==
{{Slicedlime|sNdP0qTv1Sk}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19.3-pre1]]
[[es:Java Edition 1.19.3 Pre-release 1]]
[[fr:Édition Java 1.19.3 Pre-release 1]]
[[ja:Java Edition 1.19.3 Pre-release 1]]
[[pt:Edição Java 1.19.3 Pre-release 1]]
[[ru:1.19.3 Pre-release 1 (Java Edition)]]
[[zh:Java版1.19.3-pre1]]

View file

@ -0,0 +1,77 @@
{{Infobox version
|title=Minecraft 1.19.3 Pre-release 2
|image=1.19.3-pre1.jpg
|image2=Java Edition 1.19.3 Pre-release 2.png
|edition=Java
|type=Pre-release
|date=November 23, 2022
|jsonhash=a143fa10e46759171478324d861a4c02b02c595f |jsonfile=1.19.3-pre2
|clienthash=15308e6b590de13da126a7347eb8b5040503099e
|clientmap=a7fdd97fd7accf14bed3245e4dcc8ff06154e551
|serverhash=f8a18aa1e7b658de909470f69553c53d8662dfbe
|servermap=641a5666396e887675dff2b45bcdca6650e6c731
|parent=1.19.3
|prevparent=1.19.2
|prev=1.19.3 Pre-release 1
|next=1.19.3 Pre-release 3
|nextparent=1.19.3
}}<onlyinclude>
'''1.19.3 Pre-release 2''' (known as '''1.19.3-pre2''' in the launcher) is the second pre-release for [[Java Edition 1.19.3]], released on November 23, 2022,<ref>{{Mcnet|minecraft-1-19-3-pre-release-1|Minecraft 1.19.3 Pre-Release 2|November 23, 2022}}</ref> which fixes bugs.
== Additions ==
=== General ===
; [[Tag]]s
* Added the following item tag:
** <code>#creeper_igniters</code>: <code>flint_and_steel</code> and <code>fire_charge</code>.
== Changes ==
=== Mobs ===
; [[Creeper]]s
* Can now be ignited by {{control|using}} a [[fire charge]] on it.
=== General ===
; User interface
* When tabbing through buttons, [[tooltip]]s are displayed above or below them.
* Tooltips displayed when hovering are displayed next to the cursor.
* Tooltips from focused buttons (focused by pressing tab) take priority over tooltips from hovered buttons.
; General
* Optimized some exceptionally slow cases of structure lookup.
== Fixes ==
{{fixes|fixedin=1.19.3 Pre-release 2
|;From released versions before 1.19
|185618|Creepers can't be ignited with a fire charge.
|187744|"Place pack files here" hover text on pack selection screen shows everywhere when "Open pack folder" button has focus.
|189111|Bees get stuck on non-full blocks.
|199044|Bees get stuck in sweet berry bush patches, specifically around walls.
|;From 1.19
|252831|Bees freeze and fall near certain blocks in 1.19.
|;dev
|256655|Some shorter mobs can attack Players on a Camel.
|257468|Tabbed tooltip sticks to the mouse.
|257616|The "Data Collection" button in the telemetry menu displays its hover text regardless of the position of the cursor.
|257636|Villagers rarely close doors after going through them.
|257664|Buttons within the list in the social interactions menu display their hover text regardless of the position of the cursor.
|257668|The draft report icon isn't present on any of the "Title Screen" buttons within the death screen when attempting to disconnect from worlds while having saved draft reports.
|;previous
|257821|Player head note blocks kick players from server when played in multiplayer.
}}</onlyinclude>
== Video ==
{{Slicedlime|Yml51jk59iQ}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19.3-pre2]]
[[es:Java Edition 1.19.3 Pre-release 2]]
[[fr:Édition Java 1.19.3 Pre-release 2]]
[[ja:Java Edition 1.19.3 Pre-release 2]]
[[pt:Edição Java 1.19.3 Pre-release 2]]
[[ru:1.19.3 Pre-release 2 (Java Edition)]]
[[zh:Java版1.19.3-pre2]]

View file

@ -0,0 +1,87 @@
{{Infobox version
|title=Minecraft 1.19.3 Pre-release 3
|image=1.19.3-pre3.jpg
|image2=Java Edition 1.19.3 Pre-release 3.png
|edition=Java
|type=Pre-release
|date=November 29, 2022
|jsonhash=a7606269594077f6d9324305c90ea7ce659f7f35 |jsonfile=1.19.3-pre3
|clienthash=2e935c01cccf2b1d1a7845ec596555685baa49ef
|clientmap=be5166aabd346178403bd95bc6c83aa1cab07915
|serverhash=323175facb90c05b07dff84b4cff39fd9cab138a
|servermap=7987f7f32fc1eb9b3da101feb04bd2dd533c2279
|parent=1.19.3
|prevparent=1.19.2
|prev=1.19.3 Pre-release 2
|next=1.19.3 Release Candidate 1
|nextparent=1.19.3
}}<onlyinclude>
'''1.19.3 Pre-release 3''' (known as '''1.19.3-pre3''' in the launcher) is the third and final pre-release for [[Java Edition 1.19.3]], released on November 29, 2022,<ref>{{Mcnet|minecraft-1-19-3-pre-release-3|Minecraft 1.19.3 Pre-Release 3|November 29, 2022}}</ref> which fixes bugs.
== Changes ==
=== General ===
; User interface
* Updated [[knowledge book]] textures on crafting UI and [[tutorial hints]] to the revision updated in the [[texture update]].
== Experimental ==
These changes only take effect when the 1.20 experimental data pack is enabled.
=== Changes ===
==== Blocks ====
; [[Block of bamboo]]
* Flipped its top texture horizontally.
; [[Block of stripped bamboo]]
* Flipped its top texture horizontally, but have a different pixel.
== Fixes ==
{{fixes|fixedin=1.19.3 Pre-release 3
|;From released versions before 1.19
|108597|Shulker box still plays the close sound, even if it is destroyed or replaced.
|165686|Knowledge book texture in the crafting UI hasn't been updated.
|177141|Cleric working subtitle is "Brewing Stand bubbles" instead of "Cleric works".
|194501|<code>IllegalArgumentException</code> (Cannot set property) when using a block without the <code>axis</code> property in <code>fancy_tree_placer</code>.
|201769|Copying deeply nested NBT causes <code>StackOverflowError</code>.
|208051|Chests/trapped chests/barrels do not 'open' after respawning.
|221421|A list tag can be modified during insertion into itself.
|228976|Entity collision is run on render thread.
|233051|Server crashes as player logs in.
|234702|In adventure mode, you can interact with light block.
|250428|Narrator does not narrate the death screen.
|;From 1.19
|254036|Entity data sometimes doesn't get properly updated in multiplayer.
|;From 1.19.2
|256706|Carpet texture is cut off in the recipe book.
|257530|When Chat is set to Hidden, the Chat Hidden Warning appears in chat instead of the actionbar when attempting to send a message whilst sleeping or switching gamemode.
|;dev
|257121|Players' capes and outer skin layers don't render client-side in server environments when joining worlds while dead.
|257340|Vexes' hitboxes aren't vertically centered with their models.
|257350|Top and bottom texture of block of bamboo rotated incorrectly.
|257392|Vex's new model's head does not rotate to where it looks.
|257411|Vex Renders Offhand Items Incorrectly.
|257495|Dying whilst in the Shulker Box GUI will spam "Shulker Closes" sound.
|257637|Stripped bamboo top texture doesn't match bamboo block.
|257638|Creeper note block sound is not pitched correctly.
|257817|Player heads with a custom skin lose their <code>note_block_sound</code> data when using {{key|Ctrl}} + {{ctrl|Pick block}}.
|257861|Villagers and Piglin no longer seek out Items.
|;previous
|257839|<code>NullPointerException</code> when attempting to render a tooltip in the Game Rules menu.
|257843|<code>note_block_sound</code> data is lost when breaking a player head.
}}</onlyinclude>
== Video ==
{{Slicedlime|9fbzOxRV-Fc}}
== References ==
{{Reflist}}
== Navigation ==
{{Navbox Java Edition versions|1.1x}}
[[de:1.19.3-pre3]]
[[es:Java Edition 1.19.3 Pre-release 3]]
[[fr:Édition Java 1.19.3 Pre-release 3]]
[[ja:Java Edition 1.19.3 Pre-release 3]]
[[pt:Edição Java 1.19.3 Pre-release 3]]
[[zh:Java版1.19.3-pre3]]

Some files were not shown because too many files have changed in this diff Show more