diff --git a/wiki_backup/.mclevel.txt b/wiki_backup/.mclevel.txt new file mode 100644 index 0000000..70d4e18 --- /dev/null +++ b/wiki_backup/.mclevel.txt @@ -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 == +
+* {{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. +
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: + +array index = (y * length + z) * width + x + +== 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 0x0 (0, no light) to 0xF (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世界格式]] diff --git a/wiki_backup/0.0.14a.txt b/wiki_backup/0.0.14a.txt new file mode 100644 index 0000000..c3f9162 --- /dev/null +++ b/wiki_backup/0.0.14a.txt @@ -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'''{{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}} is a version of [[Java Edition Classic]] released on May 27, 2009,[https://forums.tigsource.com/index.php?topic=6273.msg205284#msg205284 "Holy crap new tiles!"] – TigSource, May 27, 2009, 15:31:58, UTC−8 shortly before 22:26 UTC.[[#logs|IRC logs]]: "''(00:26:45) seeing a nice number up to the left too''", "''(00:26:54) 0.0.14? =D''" (May 27, 2009, 22:26 UTC) + +== 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.{{link |url=https://www.youtube.com/watch?v=LsWhsQLxCqs |title=Minecraft water flow test |date=May 23, 2009|website=YouTube}} [{{ytl|CNeaH8JVRy8}} (Archive)] +* 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.[[#logs|IRC logs]]: "''(00:34:59) so you have a fixed spawn point now?''" (May 27, 2009, 22:24 to 22:36 UTC) + +== Bugs == +* Levels do not load properly.[[#logs|IRC logs]]: "''(00:24:59) 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)[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 +* Clicking "Return to Game" while in build mode places a block.[[#logs|IRC logs]]: "''(01:17:03) 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) + +== 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]].{{Mcnet|block-week-leaves|Block of the Week: Leaves|August 18, 2017}} + +== 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]] diff --git a/wiki_backup/0.12.1 alpha build 1.txt b/wiki_backup/0.12.1 alpha build 1.txt new file mode 100644 index 0000000..2dbf2c2 --- /dev/null +++ b/wiki_backup/0.12.1 alpha build 1.txt @@ -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]
+[https://archive.org/download/MCPEAlpha/PE-a0.12.1-build1-gingerbread.apk Gingerbread]
+[https://archive.org/download/MCPEAlpha/PE-a0.12.1-build1-honeycomb.apk Honeycomb]
+|prevparent=v0.11.2 alpha +|next=v0.12.1 alpha build 2 +|nextparent=v0.12.2 alpha +}} + +'''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]] +** angryVillager +** largeexplode +** hugeexplode +** blockdust +** slime +** enchantementtable +** droplet +** snowshovel +** 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 glowshttps://twitter.com/_tomcc/status/621288048429547520 +* [[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: +** [[JE]] 1.9 feature: 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 +** [[JE]] 1.9 feature: 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{{reddit|sub=MCPE|3ejrk6/why_do_we_sink_in_lava_its_not_realistic_and_you|ctfownv}} +* {{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 de_aztec (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 + + +== 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]] diff --git a/wiki_backup/0.12.1 alpha build 4.txt b/wiki_backup/0.12.1 alpha build 4.txt new file mode 100644 index 0000000..20f01e3 --- /dev/null +++ b/wiki_backup/0.12.1 alpha build 4.txt @@ -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]
+[https://archive.org/download/MCPEAlpha/PE-a0.12.1-build4-honeycomb.apk Honeycomb]
+|prevparent=v0.11.2 alpha +|prev=v0.12.1 alpha build 3 +|next=v0.12.1 alpha build 5 +|nextparent=v0.12.2 alpha +}} + +'''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. + +== 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]] diff --git a/wiki_backup/0.13.0 alpha build 1.txt b/wiki_backup/0.13.0 alpha build 1.txt new file mode 100644 index 0000000..09b8135 --- /dev/null +++ b/wiki_backup/0.13.0 alpha build 1.txt @@ -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 +}} + +'''v0.13.0 alpha build 1'''http://pocketbeta.minecraft.net/2015/11/changelog-whats-new-in-0130.html?m=0 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''' +** happyVillager +** note + +=== [[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 Coral material which served no purposehttps://www.reddit.com/r/Minecraft/comments/3n8vta/tommaso_checchi_on_twitter_i_just_removed_coral/cvm3hxc +* 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){{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}} +* 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 + +== 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]] diff --git a/wiki_backup/0.16.0 alpha build 1.txt b/wiki_backup/0.16.0 alpha build 1.txt new file mode 100644 index 0000000..8f4c661 --- /dev/null +++ b/wiki_backup/0.16.0 alpha build 1.txt @@ -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 +}} + +'''v0.16.0 alpha build 1'''http://pocketbeta.minecraft.net/2016/08/changelog-what-is-new-in-0160-update.html (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]].https://web.archive.org/web/0/https://www.mojang.com/2016/10/fearsome-fixes-the-spooky-01510-changelog-for-pocket-win-10/ + +==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 === +
+* {{cmd|ability}} – Because it is an Education Edition feature, it is not available in normal gameplay +* {{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}} +
+ +===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 minecraft:camera) +** "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.
+ +== 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]] diff --git a/wiki_backup/0.24_SURVIVAL_TEST.txt b/wiki_backup/0.24_SURVIVAL_TEST.txt new file mode 100644 index 0000000..35eefbc --- /dev/null +++ b/wiki_backup/0.24_SURVIVAL_TEST.txt @@ -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'''{{ytl|wH0AxeY_r2Y|Minecraft Survival Mode - Reaper Creeper|Telkir|September 1, 2009}} is a version of [[Java Edition Classic]] and the first version of [[Survival Test]], released on September 1, 2009,[[WordOfNotch:177210159|"Survival Mode Test Released"]] – [[The Word of Notch]] at 16:54 UTC.[[#logs|IRC logs]]: "''A11:54:53 <08Notch> http://www.minecraft.net/survivaltest/''" (16:54:53 UTC) + +== Additions == +=== Entities === +; [[File:Sign Entity.png|x32px]] [[Sign]]s{{ytl|QAARP2qdtww|Minecraft Survival development update|Internet Video Archive}} +* 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.[[#logs|IRC logs]]: "''P1:23:30 yeah, guys, the bottom is all lava''" + +=== 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.[[#logs|IRC logs]]: "''A11:57:36 creeper took out loads of water and it dropped water blocks i can place to raise water level''" +* Cracking animation only shows on one side of a block.[[#logs|IRC logs]]: "''A11:59:28 Notch: Cracks are only drawning on one face. :(''" +* Skeletons can enter 1-block high holes.{{verify|type=untestable}} +* Minecraft crashed upon loading for some users.[[#logs|IRC logs]]: "''P12:00:12 it says the game broke :\''" +* OpenGL invalid value bug.[[#logs|IRC logs]]: "''P12:02:40 OpenGL Exception: invalid value 1281''" +* 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.[[#logs|IRC logs]]: "''P12:47:58 if you middle mouse click on a block, you'll get it added to your inventory'' [...] ''P12:52:31 I had 42 soil chunks, Middle clicked a mushroom and now I have 42 red mushrooms, Wooooo''" +** Only works on blocks that could previously be copied.[[#logs|IRC logs]]: "''P12:53:08 You can't clone ore'' [...] ''P12:53:47 Well notch, not really a problem with survivor, but when you middle click an admin block, nothing happenes''" +** 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 == + +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. + + +== 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−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]] diff --git a/wiki_backup/0.5.0 alpha.txt b/wiki_backup/0.5.0 alpha.txt new file mode 100644 index 0000000..0513265 --- /dev/null +++ b/wiki_backup/0.5.0 alpha.txt @@ -0,0 +1,271 @@ +
{{relevant guide|Bedrock Edition guides/0.5.0}}
+{{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
'''Fire''': Unknown +| clientdl = [https://archive.org/download/MCPEAlpha/PE-a0.5.0.apk Original]
+[https://archive.org/download/MCPEAlpha/PE-a0.5.0j.apk J-version]
+[https://archive.org/download/MCPEAlpha/PE-a0.5.0-1-x86.apk Original (x86)]
+[https://archive.org/download/MCPEAlpha/PE-a0.5.0-2-x86.apk Reupload (x86)]
+Amazon Appstore client unavailable +| prevparent = v0.4.0 alpha +| prev = v0.4.0 alpha rev 3 +| nextparent = v0.6.0 alpha +}} +
{{relevant guide|Bedrock Edition guides/0.5.0}}
+ +'''v0.5.0 alpha''' is a major update to ''[[Pocket Edition|Minecraft: Pocket Edition]]'' that was released on Android and iOS on November 15, 2012Announced 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_QSo2KUhttp://web.archive.org/web/20130128073657/https://play.google.com/store/apps/details?id=com.mojang.minecraftpe and on an unknown date on Fire.http://web.archive.org/web/20121119021216/http://www.amazon.com:80/Mojang-Minecraft-Pocket-Edition/dp/B00992CF6W 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}}: [[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}}: [[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}}: [[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}}: [[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.The x86 compile can be downloaded with the download list above. + +== 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 +}}
+ +== J-version == +'''v0.5.0j alpha''' was released on an unknown release date.https://www.minecraftforum.net/forums/support/minecraft-bedrock-support/1945286-my-mc-pe-is-stuck-on-0-5-0j-alpha This was the last J-version of Pocket Edition. + +== Gallery == +===Development images=== + +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 + + +== 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]] diff --git a/wiki_backup/0.6.0 alpha.txt b/wiki_backup/0.6.0 alpha.txt new file mode 100644 index 0000000..39dd63d --- /dev/null +++ b/wiki_backup/0.6.0 alpha.txt @@ -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, 2013https://web.archive.org/web/20130201005440/http://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8{{verify|prove for android}} +|clientdl='''Google Play:'''
[https://archive.org/download/MCPEAlpha/PE-a0.6.0.apk Original]
[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 +}} +{{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}}: [[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 +}} + +== Trailer == +{{yt|4ayLbL3LBnU}} + +== Gallery == +=== Development screenshots === + +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 + + +== 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]] diff --git a/wiki_backup/0.8.0 alpha build 2.txt b/wiki_backup/0.8.0 alpha build 2.txt new file mode 100644 index 0000000..354ff9a --- /dev/null +++ b/wiki_backup/0.8.0 alpha build 2.txt @@ -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 +}} +'''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. + +== 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]] diff --git a/wiki_backup/1.13-pre1.txt b/wiki_backup/1.13-pre1.txt new file mode 100644 index 0000000..48c5abd --- /dev/null +++ b/wiki_backup/1.13-pre1.txt @@ -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 +}} + +'''1.13-pre1''' is the first pre-release for [[Java Edition 1.13]], released on June 4, 2018.{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release|June 4, 2018}} + +== 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 music.under_water. + +== Changes == +* New [[title screen]], with its background showing many of the features that were added in the [[Update Aquatic]]. +** The menu panorama uses seed 1458140401 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 0 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 [a-z0-9/._-] character in path of location: minecraft:Zombie. +|124972|Game crashes during the loading world when creating a super flat world with oceanmonument 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: minecraft:DUMMY). +|127721|Jittering movement when one player spectates another player. +|129144|Changed piston behavior towards Marker-true 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. +}} + +== 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 == + +Java Edition 1.13-pre1.png|The modified [[main menu]]. +1.13-pre1 bark.png|The new top textures of [[bark]]. + + +== 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]] diff --git a/wiki_backup/1.13-pre2.txt b/wiki_backup/1.13-pre2.txt new file mode 100644 index 0000000..238d441 --- /dev/null +++ b/wiki_backup/1.13-pre2.txt @@ -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 +}} +'''1.13-pre2'''{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 Pre-Release 2|June 4, 2018}} 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 glDebugVerbosity 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.{{bug|MC-130145}} +[[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 +}} + +== 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]] diff --git a/wiki_backup/1.13-pre3.txt b/wiki_backup/1.13-pre3.txt new file mode 100644 index 0000000..b4594a5 --- /dev/null +++ b/wiki_backup/1.13-pre3.txt @@ -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 +}} + +'''1.13-pre3'''{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 3|June 4, 2018}} is the third pre-release for [[Java Edition 1.13]]. + +== Changes == +* Major memory usage optimizations. +* The resource pack folder textures/blocks got renamed to textures/block. +* The resource pack folder textures/items got renamed to textures/item. +* Blockstate files. +** "normal" for blocks without block states changed to an empty string (""). +** Item frames now have "map=false" instead of "normal" and "map=true" instead of "map". +** Model references no longer start at the models/block/ folder, but instead at models/. +* The minecraft:overworld 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" (argument.criteria.invalid) is not translated. +|124876|Villagers requesting tools with no damage provided specifically want Damage:0. +|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|minecraft:exploration_map 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: [WorldGen-Worker-1/ERROR]: Couldn't load chunk. +|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|piston_inventory.json is outside of the block models file. +|130169|Enchanted items with capitals in enchantment ID cause crash (path of location: minecraft:Cookie). +|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 +|131400|Structure names allow trailing dots for folder names +}} + +== 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]] diff --git a/wiki_backup/1.13-pre4.txt b/wiki_backup/1.13-pre4.txt new file mode 100644 index 0000000..900e6f6 --- /dev/null +++ b/wiki_backup/1.13-pre4.txt @@ -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 +}} + +'''1.13-pre4'''{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 4|June 4, 2018}} 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: 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. +}} + +== 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]] diff --git a/wiki_backup/1.13-pre5#Changes.txt b/wiki_backup/1.13-pre5#Changes.txt new file mode 100644 index 0000000..0d5dfd3 --- /dev/null +++ b/wiki_backup/1.13-pre5#Changes.txt @@ -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 +}} + +'''1.13-pre5'''{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 5|June 4, 2018}} is the fifth pre-release for [[Java Edition 1.13]]. + +== Changes == +=== General === +* Upgrade path optics code is now in a separate library, datafixerupper.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 + +;[[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}} || xp_orb || experience_orb +|- +| {{EntityLink|Bottle o' Enchanting}} || xp_bottle || experience_bottle +|- +| {{EntityLink|Eye of Ender}} || eye_of_ender_signal || eye_of_ender +|- +| {{EntityLink|End Crystal}} || ender_crystal || end_crystal. +|- +| {{EntityLink|Firework Rocket}} || fireworks_rocket || firework_rocket +|- +| {{EntityLink|Minecart with Command Block|Command Block Minecart}} || commandblock_minecart || command_block_minecart +|- +| {{EntityLink|Snow Golem}} || snowman || snow_golem +|- +| {{EntityLink|Iron Golem}} || villager_golem || iron_golem +|- +| {{EntityLink|Evoker Fangs}} || evocation_fangs || evoker_fangs +|- +| {{EntityLink|Evoker}} || evocation_illager || evoker +|- +| {{EntityLink|Vindicator}} || vindication_illager || vindicator +|- +| {{EntityLink|Illusioner}} || illusion_illager || illusioner +|- +! Block / Item !! Previous ID !! New ID +|- +| {{ItemLink|Evoker Spawn Egg}} || evocation_illager_spawn_egg || evoker_spawn_egg +|- +| {{ItemLink|Vindicator Spawn Egg}} || vindication_illager_spawn_egg || vindicator_spawn_egg +|- +| {{BlockLink|id=monster spawner|link=Monster Spawner|Spawner}} || mob_spawner || spawner +|- +| {{BlockLink|Nether Portal}} || portal || nether_portal +|- +| {{ItemLink|Tropical Fish}} || clownfish || tropical_fish +|- +| {{ItemLink|Tropical Fish Bucket}} || clownfish_bucket || tropical_fish_bucket +|- +| {{ItemLink|Popped Chorus Fruit}} || chorus_fruit_popped || popped_chorus_fruit +|- +| {{BlockLink|Logs|Wood}} || _bark || _wood +|- +| {{BlockLink|id=Stripped Logs|Stripped Wood}} || stripped__bark || stripped__wood +|- +! Biome !! Previous ID !! New ID +|- +| {{BiomeLink|id=windswept hills|Mountains}} || extreme_hills || mountains +|- +| {{BiomeLink|Swamp}} || swampland || swamp +|- +| {{BiomeLink|id=nether-wastes|Nether}} || hell || nether +|- +| {{BiomeLink|The End}} || sky || the_end +|- +| {{BiomeLink|id=snowy plains|Snowy Tundra}} || ice_flats || snowy_tundra +|- +| {{BiomeLink|Snowy Mountains}} || ice_mountains || snowy_mountains +|- +| {{BiomeLink|Mushroom Fields}} || mushroom_island || mushroom_fields +|- +| {{BiomeLink|Mushroom Field Shore}} || mushroom_island_shore || mushroom_field_shore +|- +| {{BiomeLink|Beach}} || beaches || beach +|- +| {{BiomeLink|Wooded Hills}} || forest_hills || wooded_hills +|- +| {{BiomeLink|Mountain Edge}} || smaller_extreme_hills || mountain_edge +|- +| {{BiomeLink|id=stony shore|Stone Shore}} || stone_beach || stone_shore +|- +| {{BiomeLink|Snowy Beach}} || cold_beach || snowy_beach +|- +| {{BiomeLink|Dark Forest}} || roofed_forest || dark_forest +|- +| {{BiomeLink|Snowy Taiga}} || taiga_cold || snowy_taiga +|- +| {{BiomeLink|Snowy Taiga Hills}} || taiga_cold_hills || snowy_taiga_hills +|- +| {{BiomeLink|id=old growth pine taiga|Giant Tree Taiga}} || redwood_taiga || giant_tree_taiga +|- +| {{BiomeLink|Giant Tree Taiga Hills}} || redwood_taiga_hills || giant_tree_taiga_hills +|- +| {{BiomeLink|id=windswept forest|Wooded Mountains}} || extreme_hills_with_trees || wooded_mountains +|- +| {{BiomeLink|Savanna Plateau}} || savanna_rock || savanna_plateau +|- +| {{BiomeLink|Badlands}} || mesa || badlands +|- +| {{BiomeLink|id=wooded badlands|Wooded Badlands Plateau}} || mesa_rock || wooded_badlands_plateau +|- +| {{BiomeLink|Badlands Plateau}} || mesa_clear_rock || badlands_plateau +|- +| {{BiomeLink|Small End Islands}} || sky_island_low || small_end_islands +|- +| {{BiomeLink|End Midlands}} || sky_island_medium || end_midlands +|- +| {{BiomeLink|End Highlands}} || sky_island_high || end_highlands +|- +| {{BiomeLink|End Barrens}} || sky_island_barren || end_barrens +|- +| {{BiomeLink|The Void}} || void || the_void +|- +| {{BiomeLink|Sunflower Plains}} || mutated_plains || sunflower_plains +|- +| {{BiomeLink|Desert Lakes}} || mutated_desert || desert_lakes +|- +| {{BiomeLink|id=windswept gravelly hills|Gravelly Mountains}} || mutated_extreme_hills || gravelly_mountains +|- +| {{BiomeLink|Flower Forest}} || mutated_forest || flower_forest +|- +| {{BiomeLink|Taiga Mountains}} || mutated_taiga || taiga_mountains +|- +| {{BiomeLink|Swamp Hills}} || mutated_swampland || swamp_hills +|- +| {{BiomeLink|Ice Spikes}} || mutated_ice_flats || ice_spikes +|- +| {{BiomeLink|Modified Jungle}} || mutated_jungle || modified_jungle +|- +| {{BiomeLink|Modified Jungle Edge}} || mutated_jungle_edge || modified_jungle_edge +|- +| {{BiomeLink|id=old growth birch forest|Tall Birch Forest}} || mutated_birch_forest || tall_birch_forest +|- +| {{BiomeLink|Tall Birch Hills}} || mutated_birch_forest_hills || tall_birch_hills +|- +| {{BiomeLink|Dark Forest Hills}} || mutated_roofed_forest || dark_forest_hills +|- +| {{BiomeLink|Snowy Taiga Mountains}} || mutated_taiga_cold || snowy_taiga_mountains +|- +| {{BiomeLink|id=old growth spruce taiga|Giant Spruce Taiga}} || mutated_redwood_taiga || giant_spruce_taiga +|- +| {{BiomeLink|Giant Spruce Taiga Hills}} || mutated_redwood_taiga_hills || giant_spruce_taiga_hills +|- +| {{BiomeLink|id=Modified Gravelly Mountains|Gravelly Mountains+}} || mutated_extreme_hills_with_trees || modified_gravelly_mountains +|- +| {{BiomeLink|id=windswept savanna|Shattered Savanna}} || mutated_savanna || shattered_savanna +|- +| {{BiomeLink|Shattered Savanna Plateau}} || mutated_savanna_rock || shattered_savanna_plateau +|- +| {{BiomeLink|Eroded Badlands}} || mutated_mesa || eroded_badlands +|- +| {{BiomeLink|Modified Wooded Badlands Plateau}} || mutated_mesa_rock || modified_wooded_badlands_plateau +|- +| {{BiomeLink|Modified Badlands Plateau}} || mutated_mesa_clear_rock || modified_badlands_plateau +|- +| {{BiomeLink|Deep Warm Ocean}} || warm_deep_ocean || deep_warm_ocean +|- +| {{BiomeLink|Deep Lukewarm Ocean}} || lukewarm_deep_ocean || deep_lukewarm_ocean +|- +| {{BiomeLink|Deep Cold Ocean}} || cold_deep_ocean || deep_cold_ocean +|- +| {{BiomeLink|Deep Frozen Ocean}} || frozen_deep_ocean || deep_frozen_ocean +|} + +* Changed the file paths for some textures: + +{| class="wikitable" +|- +! Previous path !! New path +|- +| entity/boat/boat_ || entity/boat/ +|- +| entity/endercrystal/endercrystal || entity/end_crystal/end_crystal +|- +| entity/endercrystal/endercrystal_beam || entity/end_crystal/end_crystal_beam +|- +| entity/illager/fangs || entity/illager/evoker_fangs +|- +| entity/llama/llama || removed +|- +| entity/llama/llama_ || entity/llama/ +|- +| entity/llama/decor/decor_ || entity/llama/decor/ +|- +| entity/wither/wither_invul || entity/wither/wither_invulnerable +|} + +* Changed the names of some sound events: + +{|class="wikitable" +! Old !! New +|- +| ambient.underwater.loop.additions.ultrarare +| ambient.underwater.loop.additions.ultra_rare +|- +| block.bubble_column.bubble_column_upwards_ambient +| block.bubble_column.upwards_ambient +|- +| block.cloth.break +| block.wool.break +|- +| block.cloth.fall +| block.wool.fall +|- +| block.cloth.hit +| block.wool.hit +|- +| block.cloth.place +| block.wool.place +|- +| block.cloth.step +| block.wool.step +|- +| block.enderchest.close +| block.ender_chest.close +|- +| block.enderchest.open +| block.ender_chest.open +|- +| block.metal_pressureplate.click_off +| block.metal_pressure_plate.click_off +|- +| block.metal_pressureplate.click_on +| block.metal_pressure_plate.click_on +|- +| block.note.basedrum +| block.note_block.basedrum +|- +| block.note.bass +| block.note_block.bass +|- +| block.note.bell +| block.note_block.bell +|- +| block.note.chime +| block.note_block.chime +|- +| block.note.flute +| block.note_block.flute +|- +| block.note.guitar +| block.note_block.guitar +|- +| block.note.harp +| block.note_block.harp +|- +| block.note.hat +| block.note_block.hat +|- +| block.note.pling +| block.note_block.pling +|- +| block.note.snare +| block.note_block.snare +|- +| block.note.xylophone +| block.note_block.xylophone +|- +| block.slime.break +| block.slime_block.break +|- +| block.slime.fall +| block.slime_block.fall +|- +| block.slime.hit +| block.slime_block.hit +|- +| block.slime.place +| block.slime_block.place +|- +| block.slime.step +| block.slime_block.step +|- +| block.stone_pressureplate.click_off +| block.stone_pressure_plate.click_off +|- +| block.stone_pressureplate.click_on +| block.stone_pressure_plate.click_on +|- +| block.waterlily.place +| block.lily_pad.place +|- +| block.wood_pressureplate.click_off +| block.wooden_pressure_plate.click_off +|- +| block.wood_button.click_on +| block.wooden_button.click_on +|- +| block.wood_button.click_off +| block.wooden_button.click_off +|- +| block.wood_pressureplate.click_on +| block.wooden_pressure_plate.click_on +|- +| entity.armorstand.break +| entity.armor_stand.break +|- +| entity.armorstand.fall +| entity.armor_stand.fall +|- +| entity.armorstand.hit +| entity.armor_stand.hit +|- +| entity.armorstand.place +| entity.armor_stand.place +|- +| entity.bobber.retrieve +| entity.fishing_bobber.retrieve +|- +| entity.bobber.splash +| entity.fishing_bobber.splash +|- +| entity.bobber.throw +| entity.fishing_bobber.throw +|- +| entity.enderdragon.ambient +| entity.ender_dragon.ambient +|- +| entity.enderdragon.death +| entity.ender_dragon.death +|- +| entity.enderdragon.flap +| entity.ender_dragon.flap +|- +| entity.enderdragon.growl +| entity.ender_dragon.growl +|- +| entity.enderdragon.hurt +| entity.ender_dragon.hurt +|- +| entity.enderdragon.shoot +| entity.ender_dragon.shoot +|- +| entity.enderdragon_fireball.explode +| entity.dragon_fireball.explode +|- +| entity.endereye.death +| entity.ender_eye.death +|- +| entity.endereye.launch +| entity.ender_eye.launch +|- +| entity.endermen.ambient +| entity.enderman.ambient +|- +| entity.endermen.death +| entity.enderman.death +|- +| entity.endermen.hurt +| entity.enderman.hurt +|- +| entity.endermen.scream +| entity.enderman.scream +|- +| entity.endermen.stare +| entity.enderman.stare +|- +| entity.endermen.teleport +| entity.enderman.teleport +|- +| entity.enderpearl.throw +| entity.ender_pearl.throw +|- +| entity.evocation_illager.ambient +| entity.evoker.ambient +|- +| entity.evocation_illager.cast_spell +| entity.evoker.cast_spell +|- +| entity.evocation_illager.death +| entity.evoker.death +|- +| entity.evocation_illager.hurt +| entity.evoker.hurt +|- +| entity.evocation_illager.prepare_attack +| entity.evoker.prepare_attack +|- +| entity.evocation_illager.prepare_summon +| entity.evoker.prepare_summon +|- +| entity.evocation_illager.prepare_wololo +| entity.evoker.prepare_wololo +|- +| entity.firework.blast +| entity.firework_rocket.blast +|- +| entity.firework.blast_far +| entity.firework_rocket.blast_far +|- +| entity.firework.large_blast +| entity.firework_rocket.large_blast +|- +| entity.firework.large_blast_far +| entity.firework_rocket.large_blast_far +|- +| entity.firework.launch +| entity.firework_rocket.launch +|- +| entity.firework.shoot +| entity.firework_rocket.shoot +|- +| entity.firework.twinkle +| entity.firework_rocket.twinkle +|- +| entity.firework.twinkle_far +| entity.firework_rocket.twinkle_far +|- +| entity.illusion_illager.ambient +| entity.illusioner.ambient +|- +| entity.illusion_illager.cast_spell +| entity.illusioner.cast_spell +|- +| entity.illusion_illager.death +| entity.illusioner.death +|- +| entity.illusion_illager.hurt +| entity.illusioner.hurt +|- +| entity.illusion_illager.mirror_move +| entity.illusioner.mirror_move +|- +| entity.illusion_illager.prepare_blindness +| entity.illusioner.prepare_blindness +|- +| entity.illusion_illager.prepare_mirror +| entity.illusioner.prepare_mirror +|- +| entity.irongolem.attack +| entity.iron_golem.attack +|- +| entity.irongolem.death +| entity.iron_golem.death +|- +| entity.irongolem.hurt +| entity.iron_golem.hurt +|- +| entity.irongolem.step +| entity.iron_golem.step +|- +| entity.itemframe.add_item +| entity.item_frame.add_item +|- +| entity.itemframe.break +| entity.item_frame.break +|- +| entity.itemframe.place +| entity.item_frame.place +|- +| entity.itemframe.remove_item +| entity.item_frame.remove_item +|- +| entity.itemframe.rotate_item +| entity.item_frame.rotate_item +|- +| entity.leashknot.break +| entity.leash_knot.break +|- +| entity.leashknot.place +| entity.leash_knot.place +|- +| entity.lightning.impact +| entity.lightning_bolt.impact +|- +| entity.lightning.thunder +| entity.lightning_bolt.thunder +|- +| entity.lingeringpotion.throw +| entity.lingering_potion.throw +|- +| entity.magmacube.death +| entity.magma_cube.death +|- +| entity.magmacube.hurt +| entity.magma_cube.hurt +|- +| entity.magmacube.jump +| entity.magma_cube.jump +|- +| entity.magmacube.squish +| entity.magma_cube.squish +|- +| entity.parrot.imitate.enderdragon +| entity.parrot.imitate.ender_dragon +|- +| entity.parrot.imitate.evocation_illager +| entity.parrot.imitate.evoker +|- +| entity.parrot.imitate.illusion_illager +| entity.parrot.imitate.illusioner +|- +| entity.parrot.imitate.magmacube +| entity.parrot.imitate.magma_cube +|- +| entity.parrot.imitate.vindication_illager +| entity.parrot.imitate.vindicator +|- +| entity.player.splash.highspeed +| entity.player.splash.high_speed +|- +| entity.polar_bear.baby_ambient +| entity.polar_bear.ambient_baby +|- +| entity.small_magmacube.death +| entity.magma_cube.death_small +|- +| entity.small_magmacube.hurt +| entity.magma_cube.hurt_small +|- +| entity.small_magmacube.squish +| entity.magma_cube.squish_small +|- +| entity.small_slime.death +| entity.slime.death_small +|- +| entity.small_slime.hurt +| entity.slime.hurt_small +|- +| entity.small_slime.jump +| entity.slime.jump_small +|- +| entity.small_slime.squish +| entity.slime.squish_small +|- +| entity.snowman.ambient +| entity.snow_golem.ambient +|- +| entity.snowman.death +| entity.snow_golem.death +|- +| entity.snowman.hurt +| entity.snow_golem.hurt +|- +| entity.snowman.shoot +| entity.snow_golem.shoot +|- +| entity.vindication_illager.ambient +| entity.vindicator.ambient +|- +| entity.vindication_illager.death +| entity.vindicator.death +|- +| entity.vindication_illager.hurt +| entity.vindicator.hurt +|- +| entity.zombie.attack_door_wood +| entity.zombie.attack_wooden_door +|- +| entity.zombie.break_door_wood +| entity.zombie.break_wooden_door +|- +| entity.zombie_pig.ambient +| entity.zombie_pigman.ambient +|- +| entity.zombie_pig.angry +| entity.zombie_pigman.angry +|- +| entity.zombie_pig.death +| entity.zombie_pigman.death +|- +| entity.zombie_pig.hurt +| entity.zombie_pigman.hurt +|- +| record.11 +| music_disc.11 +|- +| record.13 +| music_disc.13 +|- +| record.blocks +| music_disc.blocks +|- +| record.cat +| music_disc.cat +|- +| record.chirp +| music_disc.chirp +|- +| record.far +| music_disc.far +|- +| record.mall +| music_disc.mall +|- +| record.mellohi +| music_disc.mellohi +|- +| record.stal +| music_disc.stal +|- +| record.strad +| music_disc.strad +|- +| record.wait +| music_disc.wait +|- +| record.ward +| music_disc.ward +|} + +== 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 }} 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. +}} + +== 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]] diff --git a/wiki_backup/1.13-pre5.txt b/wiki_backup/1.13-pre5.txt new file mode 100644 index 0000000..0d5dfd3 --- /dev/null +++ b/wiki_backup/1.13-pre5.txt @@ -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 +}} + +'''1.13-pre5'''{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 5|June 4, 2018}} is the fifth pre-release for [[Java Edition 1.13]]. + +== Changes == +=== General === +* Upgrade path optics code is now in a separate library, datafixerupper.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 + +;[[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}} || xp_orb || experience_orb +|- +| {{EntityLink|Bottle o' Enchanting}} || xp_bottle || experience_bottle +|- +| {{EntityLink|Eye of Ender}} || eye_of_ender_signal || eye_of_ender +|- +| {{EntityLink|End Crystal}} || ender_crystal || end_crystal. +|- +| {{EntityLink|Firework Rocket}} || fireworks_rocket || firework_rocket +|- +| {{EntityLink|Minecart with Command Block|Command Block Minecart}} || commandblock_minecart || command_block_minecart +|- +| {{EntityLink|Snow Golem}} || snowman || snow_golem +|- +| {{EntityLink|Iron Golem}} || villager_golem || iron_golem +|- +| {{EntityLink|Evoker Fangs}} || evocation_fangs || evoker_fangs +|- +| {{EntityLink|Evoker}} || evocation_illager || evoker +|- +| {{EntityLink|Vindicator}} || vindication_illager || vindicator +|- +| {{EntityLink|Illusioner}} || illusion_illager || illusioner +|- +! Block / Item !! Previous ID !! New ID +|- +| {{ItemLink|Evoker Spawn Egg}} || evocation_illager_spawn_egg || evoker_spawn_egg +|- +| {{ItemLink|Vindicator Spawn Egg}} || vindication_illager_spawn_egg || vindicator_spawn_egg +|- +| {{BlockLink|id=monster spawner|link=Monster Spawner|Spawner}} || mob_spawner || spawner +|- +| {{BlockLink|Nether Portal}} || portal || nether_portal +|- +| {{ItemLink|Tropical Fish}} || clownfish || tropical_fish +|- +| {{ItemLink|Tropical Fish Bucket}} || clownfish_bucket || tropical_fish_bucket +|- +| {{ItemLink|Popped Chorus Fruit}} || chorus_fruit_popped || popped_chorus_fruit +|- +| {{BlockLink|Logs|Wood}} || _bark || _wood +|- +| {{BlockLink|id=Stripped Logs|Stripped Wood}} || stripped__bark || stripped__wood +|- +! Biome !! Previous ID !! New ID +|- +| {{BiomeLink|id=windswept hills|Mountains}} || extreme_hills || mountains +|- +| {{BiomeLink|Swamp}} || swampland || swamp +|- +| {{BiomeLink|id=nether-wastes|Nether}} || hell || nether +|- +| {{BiomeLink|The End}} || sky || the_end +|- +| {{BiomeLink|id=snowy plains|Snowy Tundra}} || ice_flats || snowy_tundra +|- +| {{BiomeLink|Snowy Mountains}} || ice_mountains || snowy_mountains +|- +| {{BiomeLink|Mushroom Fields}} || mushroom_island || mushroom_fields +|- +| {{BiomeLink|Mushroom Field Shore}} || mushroom_island_shore || mushroom_field_shore +|- +| {{BiomeLink|Beach}} || beaches || beach +|- +| {{BiomeLink|Wooded Hills}} || forest_hills || wooded_hills +|- +| {{BiomeLink|Mountain Edge}} || smaller_extreme_hills || mountain_edge +|- +| {{BiomeLink|id=stony shore|Stone Shore}} || stone_beach || stone_shore +|- +| {{BiomeLink|Snowy Beach}} || cold_beach || snowy_beach +|- +| {{BiomeLink|Dark Forest}} || roofed_forest || dark_forest +|- +| {{BiomeLink|Snowy Taiga}} || taiga_cold || snowy_taiga +|- +| {{BiomeLink|Snowy Taiga Hills}} || taiga_cold_hills || snowy_taiga_hills +|- +| {{BiomeLink|id=old growth pine taiga|Giant Tree Taiga}} || redwood_taiga || giant_tree_taiga +|- +| {{BiomeLink|Giant Tree Taiga Hills}} || redwood_taiga_hills || giant_tree_taiga_hills +|- +| {{BiomeLink|id=windswept forest|Wooded Mountains}} || extreme_hills_with_trees || wooded_mountains +|- +| {{BiomeLink|Savanna Plateau}} || savanna_rock || savanna_plateau +|- +| {{BiomeLink|Badlands}} || mesa || badlands +|- +| {{BiomeLink|id=wooded badlands|Wooded Badlands Plateau}} || mesa_rock || wooded_badlands_plateau +|- +| {{BiomeLink|Badlands Plateau}} || mesa_clear_rock || badlands_plateau +|- +| {{BiomeLink|Small End Islands}} || sky_island_low || small_end_islands +|- +| {{BiomeLink|End Midlands}} || sky_island_medium || end_midlands +|- +| {{BiomeLink|End Highlands}} || sky_island_high || end_highlands +|- +| {{BiomeLink|End Barrens}} || sky_island_barren || end_barrens +|- +| {{BiomeLink|The Void}} || void || the_void +|- +| {{BiomeLink|Sunflower Plains}} || mutated_plains || sunflower_plains +|- +| {{BiomeLink|Desert Lakes}} || mutated_desert || desert_lakes +|- +| {{BiomeLink|id=windswept gravelly hills|Gravelly Mountains}} || mutated_extreme_hills || gravelly_mountains +|- +| {{BiomeLink|Flower Forest}} || mutated_forest || flower_forest +|- +| {{BiomeLink|Taiga Mountains}} || mutated_taiga || taiga_mountains +|- +| {{BiomeLink|Swamp Hills}} || mutated_swampland || swamp_hills +|- +| {{BiomeLink|Ice Spikes}} || mutated_ice_flats || ice_spikes +|- +| {{BiomeLink|Modified Jungle}} || mutated_jungle || modified_jungle +|- +| {{BiomeLink|Modified Jungle Edge}} || mutated_jungle_edge || modified_jungle_edge +|- +| {{BiomeLink|id=old growth birch forest|Tall Birch Forest}} || mutated_birch_forest || tall_birch_forest +|- +| {{BiomeLink|Tall Birch Hills}} || mutated_birch_forest_hills || tall_birch_hills +|- +| {{BiomeLink|Dark Forest Hills}} || mutated_roofed_forest || dark_forest_hills +|- +| {{BiomeLink|Snowy Taiga Mountains}} || mutated_taiga_cold || snowy_taiga_mountains +|- +| {{BiomeLink|id=old growth spruce taiga|Giant Spruce Taiga}} || mutated_redwood_taiga || giant_spruce_taiga +|- +| {{BiomeLink|Giant Spruce Taiga Hills}} || mutated_redwood_taiga_hills || giant_spruce_taiga_hills +|- +| {{BiomeLink|id=Modified Gravelly Mountains|Gravelly Mountains+}} || mutated_extreme_hills_with_trees || modified_gravelly_mountains +|- +| {{BiomeLink|id=windswept savanna|Shattered Savanna}} || mutated_savanna || shattered_savanna +|- +| {{BiomeLink|Shattered Savanna Plateau}} || mutated_savanna_rock || shattered_savanna_plateau +|- +| {{BiomeLink|Eroded Badlands}} || mutated_mesa || eroded_badlands +|- +| {{BiomeLink|Modified Wooded Badlands Plateau}} || mutated_mesa_rock || modified_wooded_badlands_plateau +|- +| {{BiomeLink|Modified Badlands Plateau}} || mutated_mesa_clear_rock || modified_badlands_plateau +|- +| {{BiomeLink|Deep Warm Ocean}} || warm_deep_ocean || deep_warm_ocean +|- +| {{BiomeLink|Deep Lukewarm Ocean}} || lukewarm_deep_ocean || deep_lukewarm_ocean +|- +| {{BiomeLink|Deep Cold Ocean}} || cold_deep_ocean || deep_cold_ocean +|- +| {{BiomeLink|Deep Frozen Ocean}} || frozen_deep_ocean || deep_frozen_ocean +|} + +* Changed the file paths for some textures: + +{| class="wikitable" +|- +! Previous path !! New path +|- +| entity/boat/boat_ || entity/boat/ +|- +| entity/endercrystal/endercrystal || entity/end_crystal/end_crystal +|- +| entity/endercrystal/endercrystal_beam || entity/end_crystal/end_crystal_beam +|- +| entity/illager/fangs || entity/illager/evoker_fangs +|- +| entity/llama/llama || removed +|- +| entity/llama/llama_ || entity/llama/ +|- +| entity/llama/decor/decor_ || entity/llama/decor/ +|- +| entity/wither/wither_invul || entity/wither/wither_invulnerable +|} + +* Changed the names of some sound events: + +{|class="wikitable" +! Old !! New +|- +| ambient.underwater.loop.additions.ultrarare +| ambient.underwater.loop.additions.ultra_rare +|- +| block.bubble_column.bubble_column_upwards_ambient +| block.bubble_column.upwards_ambient +|- +| block.cloth.break +| block.wool.break +|- +| block.cloth.fall +| block.wool.fall +|- +| block.cloth.hit +| block.wool.hit +|- +| block.cloth.place +| block.wool.place +|- +| block.cloth.step +| block.wool.step +|- +| block.enderchest.close +| block.ender_chest.close +|- +| block.enderchest.open +| block.ender_chest.open +|- +| block.metal_pressureplate.click_off +| block.metal_pressure_plate.click_off +|- +| block.metal_pressureplate.click_on +| block.metal_pressure_plate.click_on +|- +| block.note.basedrum +| block.note_block.basedrum +|- +| block.note.bass +| block.note_block.bass +|- +| block.note.bell +| block.note_block.bell +|- +| block.note.chime +| block.note_block.chime +|- +| block.note.flute +| block.note_block.flute +|- +| block.note.guitar +| block.note_block.guitar +|- +| block.note.harp +| block.note_block.harp +|- +| block.note.hat +| block.note_block.hat +|- +| block.note.pling +| block.note_block.pling +|- +| block.note.snare +| block.note_block.snare +|- +| block.note.xylophone +| block.note_block.xylophone +|- +| block.slime.break +| block.slime_block.break +|- +| block.slime.fall +| block.slime_block.fall +|- +| block.slime.hit +| block.slime_block.hit +|- +| block.slime.place +| block.slime_block.place +|- +| block.slime.step +| block.slime_block.step +|- +| block.stone_pressureplate.click_off +| block.stone_pressure_plate.click_off +|- +| block.stone_pressureplate.click_on +| block.stone_pressure_plate.click_on +|- +| block.waterlily.place +| block.lily_pad.place +|- +| block.wood_pressureplate.click_off +| block.wooden_pressure_plate.click_off +|- +| block.wood_button.click_on +| block.wooden_button.click_on +|- +| block.wood_button.click_off +| block.wooden_button.click_off +|- +| block.wood_pressureplate.click_on +| block.wooden_pressure_plate.click_on +|- +| entity.armorstand.break +| entity.armor_stand.break +|- +| entity.armorstand.fall +| entity.armor_stand.fall +|- +| entity.armorstand.hit +| entity.armor_stand.hit +|- +| entity.armorstand.place +| entity.armor_stand.place +|- +| entity.bobber.retrieve +| entity.fishing_bobber.retrieve +|- +| entity.bobber.splash +| entity.fishing_bobber.splash +|- +| entity.bobber.throw +| entity.fishing_bobber.throw +|- +| entity.enderdragon.ambient +| entity.ender_dragon.ambient +|- +| entity.enderdragon.death +| entity.ender_dragon.death +|- +| entity.enderdragon.flap +| entity.ender_dragon.flap +|- +| entity.enderdragon.growl +| entity.ender_dragon.growl +|- +| entity.enderdragon.hurt +| entity.ender_dragon.hurt +|- +| entity.enderdragon.shoot +| entity.ender_dragon.shoot +|- +| entity.enderdragon_fireball.explode +| entity.dragon_fireball.explode +|- +| entity.endereye.death +| entity.ender_eye.death +|- +| entity.endereye.launch +| entity.ender_eye.launch +|- +| entity.endermen.ambient +| entity.enderman.ambient +|- +| entity.endermen.death +| entity.enderman.death +|- +| entity.endermen.hurt +| entity.enderman.hurt +|- +| entity.endermen.scream +| entity.enderman.scream +|- +| entity.endermen.stare +| entity.enderman.stare +|- +| entity.endermen.teleport +| entity.enderman.teleport +|- +| entity.enderpearl.throw +| entity.ender_pearl.throw +|- +| entity.evocation_illager.ambient +| entity.evoker.ambient +|- +| entity.evocation_illager.cast_spell +| entity.evoker.cast_spell +|- +| entity.evocation_illager.death +| entity.evoker.death +|- +| entity.evocation_illager.hurt +| entity.evoker.hurt +|- +| entity.evocation_illager.prepare_attack +| entity.evoker.prepare_attack +|- +| entity.evocation_illager.prepare_summon +| entity.evoker.prepare_summon +|- +| entity.evocation_illager.prepare_wololo +| entity.evoker.prepare_wololo +|- +| entity.firework.blast +| entity.firework_rocket.blast +|- +| entity.firework.blast_far +| entity.firework_rocket.blast_far +|- +| entity.firework.large_blast +| entity.firework_rocket.large_blast +|- +| entity.firework.large_blast_far +| entity.firework_rocket.large_blast_far +|- +| entity.firework.launch +| entity.firework_rocket.launch +|- +| entity.firework.shoot +| entity.firework_rocket.shoot +|- +| entity.firework.twinkle +| entity.firework_rocket.twinkle +|- +| entity.firework.twinkle_far +| entity.firework_rocket.twinkle_far +|- +| entity.illusion_illager.ambient +| entity.illusioner.ambient +|- +| entity.illusion_illager.cast_spell +| entity.illusioner.cast_spell +|- +| entity.illusion_illager.death +| entity.illusioner.death +|- +| entity.illusion_illager.hurt +| entity.illusioner.hurt +|- +| entity.illusion_illager.mirror_move +| entity.illusioner.mirror_move +|- +| entity.illusion_illager.prepare_blindness +| entity.illusioner.prepare_blindness +|- +| entity.illusion_illager.prepare_mirror +| entity.illusioner.prepare_mirror +|- +| entity.irongolem.attack +| entity.iron_golem.attack +|- +| entity.irongolem.death +| entity.iron_golem.death +|- +| entity.irongolem.hurt +| entity.iron_golem.hurt +|- +| entity.irongolem.step +| entity.iron_golem.step +|- +| entity.itemframe.add_item +| entity.item_frame.add_item +|- +| entity.itemframe.break +| entity.item_frame.break +|- +| entity.itemframe.place +| entity.item_frame.place +|- +| entity.itemframe.remove_item +| entity.item_frame.remove_item +|- +| entity.itemframe.rotate_item +| entity.item_frame.rotate_item +|- +| entity.leashknot.break +| entity.leash_knot.break +|- +| entity.leashknot.place +| entity.leash_knot.place +|- +| entity.lightning.impact +| entity.lightning_bolt.impact +|- +| entity.lightning.thunder +| entity.lightning_bolt.thunder +|- +| entity.lingeringpotion.throw +| entity.lingering_potion.throw +|- +| entity.magmacube.death +| entity.magma_cube.death +|- +| entity.magmacube.hurt +| entity.magma_cube.hurt +|- +| entity.magmacube.jump +| entity.magma_cube.jump +|- +| entity.magmacube.squish +| entity.magma_cube.squish +|- +| entity.parrot.imitate.enderdragon +| entity.parrot.imitate.ender_dragon +|- +| entity.parrot.imitate.evocation_illager +| entity.parrot.imitate.evoker +|- +| entity.parrot.imitate.illusion_illager +| entity.parrot.imitate.illusioner +|- +| entity.parrot.imitate.magmacube +| entity.parrot.imitate.magma_cube +|- +| entity.parrot.imitate.vindication_illager +| entity.parrot.imitate.vindicator +|- +| entity.player.splash.highspeed +| entity.player.splash.high_speed +|- +| entity.polar_bear.baby_ambient +| entity.polar_bear.ambient_baby +|- +| entity.small_magmacube.death +| entity.magma_cube.death_small +|- +| entity.small_magmacube.hurt +| entity.magma_cube.hurt_small +|- +| entity.small_magmacube.squish +| entity.magma_cube.squish_small +|- +| entity.small_slime.death +| entity.slime.death_small +|- +| entity.small_slime.hurt +| entity.slime.hurt_small +|- +| entity.small_slime.jump +| entity.slime.jump_small +|- +| entity.small_slime.squish +| entity.slime.squish_small +|- +| entity.snowman.ambient +| entity.snow_golem.ambient +|- +| entity.snowman.death +| entity.snow_golem.death +|- +| entity.snowman.hurt +| entity.snow_golem.hurt +|- +| entity.snowman.shoot +| entity.snow_golem.shoot +|- +| entity.vindication_illager.ambient +| entity.vindicator.ambient +|- +| entity.vindication_illager.death +| entity.vindicator.death +|- +| entity.vindication_illager.hurt +| entity.vindicator.hurt +|- +| entity.zombie.attack_door_wood +| entity.zombie.attack_wooden_door +|- +| entity.zombie.break_door_wood +| entity.zombie.break_wooden_door +|- +| entity.zombie_pig.ambient +| entity.zombie_pigman.ambient +|- +| entity.zombie_pig.angry +| entity.zombie_pigman.angry +|- +| entity.zombie_pig.death +| entity.zombie_pigman.death +|- +| entity.zombie_pig.hurt +| entity.zombie_pigman.hurt +|- +| record.11 +| music_disc.11 +|- +| record.13 +| music_disc.13 +|- +| record.blocks +| music_disc.blocks +|- +| record.cat +| music_disc.cat +|- +| record.chirp +| music_disc.chirp +|- +| record.far +| music_disc.far +|- +| record.mall +| music_disc.mall +|- +| record.mellohi +| music_disc.mellohi +|- +| record.stal +| music_disc.stal +|- +| record.strad +| music_disc.strad +|- +| record.wait +| music_disc.wait +|- +| record.ward +| music_disc.ward +|} + +== 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 }} 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. +}} + +== 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]] diff --git a/wiki_backup/1.13-pre7.txt b/wiki_backup/1.13-pre7.txt new file mode 100644 index 0000000..3276120 --- /dev/null +++ b/wiki_backup/1.13-pre7.txt @@ -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 +}} + +'''1.13-pre7'''{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 7|July 10, 2018}} is the seventh pre-release for [[Java Edition 1.13]]. + +== Additions == +=== Command format === +* Added {{cmd|scoreboard objectives modify '''' displayname ''''}} + +== Changes == +=== Fluids === +; [[Water]] +* Pressing the {{control|jump}} button in flowing water at level=1, level=2 and level=3 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.https://www.reddit.com/r/Minecraft/comments/8xo1ex/minecraft_113_map_rendering_changes/ + +=== 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}}F3+I was used to copy targeted block or entity data to clipboard. 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.{{bug|MC-127025}} +* Drip particles now snap to the hitbox of the block they appear on.{{bug|MC-1390}} + +; 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 entity.endermen.xx. +| 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 entity.puffer_fish.sting 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. +}} + +== 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]] diff --git a/wiki_backup/1.13-pre8.txt b/wiki_backup/1.13-pre8.txt new file mode 100644 index 0000000..a4aef24 --- /dev/null +++ b/wiki_backup/1.13-pre8.txt @@ -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 +}} + +'''1.13-pre8'''{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 8|July 13, 2018}} 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 '''' displayName}} +* Added {{cmd|scoreboard objectives modify '''' rendertype ''hearts''}} +** Makes health bars display as hearts, like this: {{Healthbar|12}}. +* Added {{cmd|scoreboard objectives modify '''' rendertype ''integer''}} +** Makes health bars display as yellow numbers, like this: 12. + +=== General === +; [[Tag]]s +* Added the block tag wall_corals. +* Added the block tag impermeable. 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 ''''_coral_fan into ''''_coral_wall_fan. +* Added ''''_coral_fan 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 subtitles.entity.parrot.imitate.phantom 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. +}} + +== 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]] diff --git a/wiki_backup/1.13-pre9.txt b/wiki_backup/1.13-pre9.txt new file mode 100644 index 0000000..42f40e3 --- /dev/null +++ b/wiki_backup/1.13-pre9.txt @@ -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 +}} + +'''1.13-pre9'''{{Mcnet|minecraft-113-pre-release|Minecraft 1.13 pre-release 9|July 16, 2018}} is the ninth pre-release for [[Java Edition 1.13]]. + +== Additions == +; [[Subtitles]] +* Added some missing subtitle strings.https://pokechu22.github.io/Burger/diff_1.13-pre8_1.13-pre9#language:subtitles + +== 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}}
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 random_chance 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 org.lwjgl.opengl.GL11.glDrawArrays when opening language settings (caused by "''Couldn't find glyph for character Ʞ (\ua7b0)''"). +|;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. +}} + +== 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]] diff --git a/wiki_backup/1.13.1-pre1.txt b/wiki_backup/1.13.1-pre1.txt new file mode 100644 index 0000000..4f3592d --- /dev/null +++ b/wiki_backup/1.13.1-pre1.txt @@ -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 +}} + +'''1.13.1-pre1'''{{Mcnet|minecraft-snapshot-18w33a|Minecraft 1.13.1 pre-release 1|August 16, 2018}} 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|
}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.13.2-pre2.txt b/wiki_backup/1.13.2-pre2.txt new file mode 100644 index 0000000..015dc6b --- /dev/null +++ b/wiki_backup/1.13.2-pre2.txt @@ -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 +}} + +'''1.13.2-pre2'''{{Mcnet|minecraft-java-edition-1132|Minecraft Java Edition 1.13.2|October 16, 2018}} 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. +}} + +== Video == +{{Slicedlime|i8DFy0C5Iwg}} + +== 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. + +== 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]] diff --git a/wiki_backup/1.13_Flattening.txt b/wiki_backup/1.13_Flattening.txt new file mode 100644 index 0000000..ea5121e --- /dev/null +++ b/wiki_backup/1.13_Flattening.txt @@ -0,0 +1,5594 @@ +{{Redirect|Flattening|the {{el|be}} equivalent|Bedrock Edition Flattening}} +{{exclusive|java}} +In [[Java Edition 1.13]], the change known as "'''The Flattening'''" was performed, which modified the IDs of many blocks, items, [[biome]]s, [[particles]], [[painting]]s, [[entities]], [[statistics]] and sound events, removed numeric IDs, added and removed some [[Java Edition data values|block states]], and changed [[NBT format|NBT tags]] and display names.https://bugs.mojang.com/secure/attachment/151784/the_flattening.txt of {{bug|MC-121742}} +The contents of this page serve as a comparison between the identifiers of versions [[Java Edition 1.12.2|1.12.2]] and [[Java Edition 1.13|1.13]]. + +== Block and item IDs == +[[Block]]s and [[item]]s that change their ID in any way also affect their [[statistics]]. +{|class="wikitable stikitable" +!rowspan="2"|Change +!colspan="2"|[[Java Edition 1.12.2|1.12.2]] +!colspan="2"|[[Java Edition 1.13|1.13]] +|- +!Block +![[Java Edition data values|ID]] +!Block +![[Resource location]] +|- +|rowspan="7"|Separate +|rowspan="7"|[[File:Stone.png|16px]] [[Stone]] +|rowspan="7"|{{cd|stone}} +|[[File:Stone.png|16px]] [[Stone]] +|{{cd|stone}} +|- +|[[File:Granite.png|16px]] [[Granite]] +|{{cd|granite}} +|- +|[[File:Polished Granite.png|16px]] [[Polished Granite]] +|{{cd|polished_granite}} +|- +|[[File:Diorite.png|16px]] [[Diorite]] +|{{cd|diorite}} +|- +|[[File:Polished Diorite.png|16px]] [[Polished Diorite]] +|{{cd|polished_diorite}} +|- +|[[File:Andesite.png|16px]] [[Andesite]] +|{{cd|andesite}} +|- +|[[File:Polished Andesite.png|16px]] [[Polished Andesite]] +|{{cd|polished_andesite}} +|- +|Rename +|[[File:Plains Grass Block.png|16px]] [[Grass Block]] +|{{cd|grass}} +|[[File:Plains Grass Block.png|16px]] [[Grass Block]] +|{{cd|grass_block}} +|- +|rowspan="3"|Separate +|rowspan="3"|[[File:Dirt.png|16px]] [[Dirt]] +|rowspan="3"|{{cd|dirt}} +|[[File:Dirt.png|16px]] [[Dirt]] +|{{cd|dirt}} +|- +|[[File:Coarse Dirt.png|16px]] [[Coarse Dirt]] +|{{cd|coarse_dirt}} +|- +|[[File:Podzol.png|16px]] [[Podzol]] +|{{cd|podzol}} +|- +|rowspan="6"|Separate +|rowspan="6"|[[File:Oak Planks.png|16px]] [[Planks]] +|rowspan="6"|{{cd|planks}} +|[[File:Oak Planks.png|16px]] [[Oak Planks]] +|{{cd|oak_planks}} +|- +|[[File:Spruce Planks.png|16px]] [[Spruce Planks]] +|{{cd|spruce_planks}} +|- +|[[File:Birch Planks.png|16px]] [[Birch Planks]] +|{{cd|birch_planks}} +|- +|[[File:Jungle Planks.png|16px]] [[Jungle Planks]] +|{{cd|jungle_planks}} +|- +|[[File:Acacia Planks.png|16px]] [[Acacia Planks]] +|{{cd|acacia_planks}} +|- +|[[File:Dark Oak Planks.png|16px]] [[Dark Oak Planks]] +|{{cd|dark_oak_planks}} +|- +|rowspan="6"|Separate +|rowspan="6"|[[File:Oak Sapling.png|16px]] [[Sapling]] +|rowspan="6"|{{cd|sapling}} +|[[File:Oak Sapling.png|16px]] [[Oak Sapling]] +|{{cd|oak_sapling}} +|- +|[[File:Spruce Sapling.png|16px]] [[Spruce Sapling]] +|{{cd|spruce_sapling}} +|- +|[[File:Birch Sapling.png|16px]] [[Birch Sapling]] +|{{cd|birch_sapling}} +|- +|[[File:Jungle Sapling.png|16px]] [[Jungle Sapling]] +|{{cd|jungle_sapling}} +|- +|[[File:Acacia Sapling.png|16px]] [[Acacia Sapling]] +|{{cd|acacia_sapling}} +|- +|[[File:Dark Oak Sapling.png|16px]] [[Dark Oak Sapling]] +|{{cd|dark_oak_sapling}} +|- +|rowspan="2"|Separate +|rowspan="2"|[[File:Sand.png|16px]] [[Sand]] +|rowspan="2"|{{cd|sand}} +|[[File:Sand.png|16px]] [[Sand]] +|{{cd|sand}} +|- +|[[File:Red Sand.png|16px]] [[Red Sand]] +|{{cd|red_sand}} +|- +|rowspan="8"|Separate +|rowspan="8"|[[File:Oak Log (UD) JE5 BE3.png|16px]] [[Log]] +|rowspan="8"|{{cd|log}} +|[[File:Oak Log (UD) JE5 BE3.png|16px]] [[Oak Log]] +|{{cd|oak_log}} +|- +|[[File:Spruce Log.png|16px]] [[Spruce Log]] +|{{cd|spruce_log}} +|- +|[[File:Birch Log.png|16px]] [[Birch Log]] +|{{cd|birch_log}} +|- +|[[File:Jungle Log.png|16px]] [[Jungle Log]] +|{{cd|jungle_log}} +|- +|[[File:Oak Wood.png|16px]] [[Oak Wood]] +|{{cd|oak_wood}} +|- +|[[File:Spruce Wood.png|16px]] [[Spruce Wood]] +|{{cd|spruce_wood}} +|- +|[[File:Birch Wood.png|16px]] [[Birch Wood]] +|{{cd|birch_wood}} +|- +|[[File:Jungle Wood.png|16px]] [[Jungle Wood]] +|{{cd|jungle_wood}} +|- +|rowspan="4"|Separate +|rowspan="4"|[[File:Acacia Log.png|16px]] [[Log]] (2) +|rowspan="4"|{{cd|log2}} +|[[File:Acacia Log.png|16px]] [[Acacia Log]] +|{{cd|acacia_log}} +|- +|[[File:Dark Oak Log.png|16px]] [[Dark Oak Log]] +|{{cd|dark_oak_log}} +|- +|[[File:Acacia Wood.png|16px]] [[Acacia Wood]] +|{{cd|acacia_wood}} +|- +|[[File:Dark Oak Wood.png|16px]] [[Dark Oak Wood]] +|{{cd|dark_oak_wood}} +|- +|rowspan="4"|Separate +|rowspan="4"|[[File:Oak Leaves.png|16px]] [[Leaves]] +|rowspan="4"|{{cd|leaves}} +|[[File:Oak Leaves.png|16px]] [[Oak Leaves]] +|{{cd|oak_leaves}} +|- +|[[File:Spruce Leaves.png|16px]] [[Spruce Leaves]] +|{{cd|spruce_leaves}} +|- +|[[File:Birch Leaves.png|16px]] [[Birch Leaves]] +|{{cd|birch_leaves}} +|- +|[[File:Jungle Leaves.png|16px]] [[Jungle Leaves]] +|{{cd|jungle_leaves}} +|- +|rowspan="2"|Separate +|rowspan="2"|[[File:Acacia Leaves.png|16px]] [[Leaves]] (2) +|rowspan="2"|{{cd|leaves2}} +|[[File:Acacia Leaves.png|16px]] [[Acacia Leaves]] +|{{cd|acacia_leaves}} +|- +|[[File:Dark Oak Leaves.png|16px]] [[Dark Oak Leaves]] +|{{cd|dark_oak_leaves}} +|- +|rowspan="2"|Separate +|rowspan="2"|[[File:Sponge.png|16px]] [[Sponge]] +|rowspan="2"|{{cd|sponge}} +|[[File:Sponge.png|16px]] [[Sponge]] +|{{cd|sponge}} +|- +|[[File:Wet Sponge.png|16px]] [[Wet Sponge]] +|{{cd|wet_sponge}} +|- +|rowspan="3"|Separate +|rowspan="3"|[[File:Sandstone.png|16px]] [[Sandstone]] +|rowspan="3"|{{cd|sandstone}} +|[[File:Sandstone.png|16px]] [[Sandstone]] +|{{cd|sandstone}} +|- +|[[File:Chiseled Sandstone.png|16px]] [[Chiseled Sandstone]] +|{{cd|chiseled_sandstone}} +|- +|[[File:Cut Sandstone.png|16px]] [[Cut Sandstone]] +|{{cd|cut_sandstone}} +|- +|Rename +|[[File:Note Block.png|16px]] [[Note Block]] +|{{cd|noteblock}} +|[[File:Note Block.png|16px]] [[Note Block]] +|{{cd|note_block}} +|- +|Rename +|[[File:Powered Rail.png|16px]] [[Powered Rail]] +|{{cd|golden_rail}} +|[[File:Powered Rail.png|16px]] [[Powered Rail]] +|{{cd|powered_rail}} +|- +|Rename +|[[File:Cobweb.png|16px]] [[Cobweb]] +|{{cd|web}} +|[[File:Cobweb.png|16px]] [[Cobweb]] +|{{cd|cobweb}} +|- +|rowspan="3"|Separate +|rowspan="3"|[[File:Grass.png|16px]] [[Short grass]] +|rowspan="3"|{{cd|tallgrass}} +|[[File:Dead Bush.png|16px]] [[Dead Bush]] +|{{cd|dead_bush}} +|- +|[[File:Grass.png|16px]] [[Short grass]] +|{{cd|grass}} +|- +|[[File:Fern.png|16px]] [[Fern]] +|{{cd|fern}} +|- +|Rename +|[[File:Dead Bush.png|16px]] [[Dead Bush]] +|{{cd|deadbush}} +|[[File:Dead Bush.png|16px]] [[Dead Bush]] +|{{cd|dead_bush}} +|- +|Rename +|[[File:Piston.png|16px]] [[Moving Piston]]This block has no item form. +|{{cd|piston_extension}} +|[[File:Piston.png|16px]] [[Moving Piston]] +|{{cd|moving_piston}} +|- +|rowspan="16"|Separate +|rowspan="16"|[[File:White Wool.png|16px]] [[Wool]] +|rowspan="16"|{{cd|wool}} +|[[File:White Wool.png|16px]] [[White Wool]] +|{{cd|white_wool}} +|- +|[[File:Orange Wool.png|16px]] [[Orange Wool]] +|{{cd|orange_wool}} +|- +|[[File:Magenta Wool.png|16px]] [[Magenta Wool]] +|{{cd|magenta_wool}} +|- +|[[File:Light Blue Wool.png|16px]] [[Light Blue Wool]] +|{{cd|light_blue_wool}} +|- +|[[File:Yellow Wool.png|16px]] [[Yellow Wool]] +|{{cd|yellow_wool}} +|- +|[[File:Lime Wool.png|16px]] [[Lime Wool]] +|{{cd|lime_wool}} +|- +|[[File:Pink Wool.png|16px]] [[Pink Wool]] +|{{cd|pink_wool}} +|- +|[[File:Gray Wool.png|16px]] [[Gray Wool]] +|{{cd|gray_wool}} +|- +|[[File:Light Gray Wool.png|16px]] [[Light Gray Wool]] +|{{cd|light_gray_wool}} +|- +|[[File:Cyan Wool.png|16px]] [[Cyan Wool]] +|{{cd|cyan_wool}} +|- +|[[File:Purple Wool.png|16px]] [[Purple Wool]] +|{{cd|purple_wool}} +|- +|[[File:Blue Wool.png|16px]] [[Blue Wool]] +|{{cd|blue_wool}} +|- +|[[File:Brown Wool.png|16px]] [[Brown Wool]] +|{{cd|brown_wool}} +|- +|[[File:Green Wool.png|16px]] [[Green Wool]] +|{{cd|green_wool}} +|- +|[[File:Red Wool.png|16px]] [[Red Wool]] +|{{cd|red_wool}} +|- +|[[File:Black Wool.png|16px]] [[Black Wool]] +|{{cd|black_wool}} +|- +|Rename +|[[File:Dandelion.png|16px]] [[Dandelion]] +|{{cd|yellow_flower}} +|[[File:Dandelion.png|16px]] [[Dandelion]] +|{{cd|dandelion}} +|- +|rowspan="9"|Separate +|rowspan="9"|[[File:Poppy.png|16px]] [[Flower]] +|rowspan="9"|{{cd|red_flower}} +|[[File:Poppy.png|16px]] [[Poppy]] +|{{cd|poppy}} +|- +|[[File:Blue Orchid.png|16px]] [[Blue Orchid]] +|{{cd|blue_orchid}} +|- +|[[File:Allium.png|16px]] [[Allium]] +|{{cd|allium}} +|- +|[[File:Azure Bluet.png|16px]] [[Azure Bluet]] +|{{cd|azure_bluet}} +|- +|[[File:Red Tulip.png|16px]] [[Red Tulip]] +|{{cd|red_tulip}} +|- +|[[File:Orange Tulip.png|16px]] [[Orange Tulip]] +|{{cd|orange_tulip}} +|- +|[[File:White Tulip.png|16px]] [[White Tulip]] +|{{cd|white_tulip}} +|- +|[[File:Pink Tulip.png|16px]] [[Pink Tulip]] +|{{cd|pink_tulip}} +|- +|[[File:Oxeye Daisy.png|16px]] [[Oxeye Daisy]] +|{{cd|oxeye_daisy}} +|- +|rowspan="6"|Separate and merge +|rowspan="3"|[[File:Oak Planks.png|16px]] [[Slab|Double Wooden Slab]] +|rowspan="3"|{{cd|double_wooden_slab}} +|[[File:Oak Slab.png|16px]] [[Oak Slab]] +|{{cd|oak_slab}} +|- +|[[File:Spruce Slab.png|16px]] [[Spruce Slab]] +|{{cd|spruce_slab}} +|- +|[[File:Birch Slab.png|16px]] [[Birch Slab]] +|{{cd|birch_slab}} +|- +|rowspan="3"|[[File:Oak Slab.png|16px]] [[Wooden Slab]] +|rowspan="3"|{{cd|wooden_slab}} +|[[File:Jungle Slab.png|16px]] [[Jungle Slab]] +|{{cd|jungle_slab}} +|- +|[[File:Acacia Slab.png|16px]] [[Acacia Slab]] +|{{cd|acacia_slab}} +|- +|[[File:Dark Oak Slab.png|16px]] [[Dark Oak Slab]] +|{{cd|dark_oak_slab}} +|- +|rowspan="11"|Separate and merge +|rowspan="5"|[[File:Double Smooth Stone Slab.png|16px]] [[Double Stone Slab]] +|rowspan="5"|{{cd|double_stone_slab}} +|[[File:Smooth Stone Slab.png|16px]] [[Stone Slab]] +|{{cd|stone_slab}} +|- +|[[File:Sandstone Slab.png|16px]] [[Sandstone Slab]] +|{{cd|sandstone_slab}} +|- +|[[File:Petrified Oak Slab.png|16px]] [[Petrified Oak Slab]] +|{{cd|petrified_oak_slab}} +|- +|[[File:Cobblestone Slab.png|16px]] [[Cobblestone Slab]] +|{{cd|cobblestone_slab}} +|- +|[[File:Brick Slab.png|16px]] [[Brick Slab]] +|{{cd|brick_slab}} +|- +|rowspan="6"|[[File:Smooth Stone Slab.png|16px]] [[Stone Slab]] +|rowspan="6"|{{cd|stone_slab}} +|[[File:Stone Brick Slab.png|16px]] [[Stone Brick Slab]] +|{{cd|stone_brick_slab}} +|- +|[[File:Nether Brick Slab.png|16px]] [[Nether Brick Slab]] +|{{cd|nether_brick_slab}} +|- +|[[File:Quartz Slab.png|16px]] [[Quartz Slab]] +|{{cd|quartz_slab}} +|- +|[[File:Smooth Stone.png|16px]] [[Smooth Stone]] +|{{cd|smooth_stone}} +|- +|[[File:Smooth Sandstone.png|16px]] [[Smooth Sandstone]] +|{{cd|smooth_sandstone}} +|- +|[[File:Smooth Quartz.png|16px]] [[Smooth Quartz]] +|{{cd|smooth_quartz}} +|- +|rowspan="2"|Separate and merge +|[[File:Red Sandstone.png|16px]] [[Double Red Sandstone Slab]] +|{{cd|double_stone_slab2}} +|[[File:Red Sandstone Slab.png|16px]] [[Red Sandstone Slab]] +|{{cd|red_sandstone_slab}} +|- +|[[File:Red Sandstone Slab.png|16px]] [[Red Sandstone Slab]] +|{{cd|stone_slab2}} +|[[File:Smooth Red Sandstone.png|16px]] [[Smooth Red Sandstone]] +|{{cd|smooth_red_sandstone}} +|- +|rowspan="2"|Merge +|[[File:Purpur Block.png|16px]] [[Double Purpur Slab]] +|{{cd|double_purpur_slab}} +|rowspan="2"|[[File:Purpur Slab.png|16px]] [[Purpur Slab]] +|rowspan="2"|{{cd|purpur_slab}} +|- +|[[File:Purpur Slab.png|16px]] [[Purpur Slab]] +|{{cd|purpur_slab}} +|- +|Rename +|[[File:Bricks.png|16px]] [[Bricks]] +|{{cd|brick_block}} +|[[File:Bricks.png|16px]] [[Bricks]] +|{{cd|bricks}} +|- +|Rename +|[[File:Spawner.png|16px]] [[Monster Spawner|Spawner]] +|{{cd|mob_spawner}} +|[[File:Spawner.png|16px]] [[Monster Spawner|Spawner]] +|{{cd|spawner}} +|- +|Rename +|[[File:Nether Portal.png|16px]] [[Nether Portal]] +|{{cd|portal}} +|[[File:Nether Portal.png|16px]] [[Nether Portal]] +|{{cd|nether_portal}} +|- +|rowspan="2"|Separate +|rowspan="2"|[[File:Torch.png|16px]] [[Torch]] +|rowspan="2"|{{cd|torch}} +|[[File:Wall Torch.png|16px]] [[Wall Torch]] +|{{cd|wall_torch}} +|- +|[[File:Torch.png|16px]] [[Torch]] +|{{cd|torch}} +|- +|rowspan="2"|Merge +|[[File:Furnace.png|16px]] [[Furnace]] +|{{cd|furnace}} +|rowspan="2"|[[File:Furnace.png|16px]] [[Furnace]] +|rowspan="2"|{{cd|furnace}} +|- +|[[File:Lit Furnace.png|16px]] [[Furnace|Lit Furnace]] +|{{cd|lit_furnace}} +|- +|Rename +|[[File:Cobblestone Stairs.png|16px]] [[Cobblestone Stairs]] +|{{cd|stone_stairs}} +|[[File:Cobblestone Stairs.png|16px]] [[Cobblestone Stairs]] +|{{cd|cobblestone_stairs}} +|- +|Rename +|[[File:Oak Pressure Plate.png|16px]] [[Oak Pressure Plate]] +|{{cd|wooden_pressure_plate}} +|[[File:Oak Pressure Plate.png|16px]] [[Oak Pressure Plate]] +|{{cd|oak_pressure_plate}} +|- +|rowspan="2"|Merge +|[[File:Redstone Ore.png|16px]] [[Redstone Ore]] +|{{cd|redstone_ore}} +|rowspan="2"|[[File:Redstone Ore.png|16px]] [[Redstone Ore]] +|rowspan="2"|{{cd|redstone_ore}} +|- +|[[File:Lit Redstone Ore.png|16px]] [[Redstone Ore|Lit Redstone Ore]] +|{{cd|lit_redstone_ore}} +|- +|rowspan="2"|Separate and merge +|[[File:Unlit Redstone Torch.png|16px]] [[Redstone Torch|Unlit Redstone Torch]] +|{{cd|unlit_redstone_torch}} +|[[File:Redstone Wall Torch.png|16px]] [[Redstone Wall Torch]] +|{{cd|redstone_wall_torch}} +|- +|[[File:Redstone Torch.png|16px]] [[Redstone Torch]] +|{{cd|redstone_torch}} +|[[File:Redstone Torch.png|16px]] [[Redstone Torch]] +|{{cd|redstone_torch}} +|- +|Rename +|[[File:Snow.png|16px]] [[Snow]] +|{{cd|snow_layer}} +|[[File:Snow.png|16px]] [[Snow]] +|{{cd|snow}} +|- +|Rename +|[[File:Snow Block.png|16px]] [[Snow Block]] +|{{cd|snow}} +|[[File:Snow Block.png|16px]] [[Snow Block]] +|{{cd|snow_block}} +|- +|Rename +|[[File:Oak Fence.png|16px]] [[Oak Fence]] +|{{cd|fence}} +|[[File:Oak Fence.png|16px]] [[Oak Fence]] +|{{cd|oak_fence}} +|- +|Rename +|[[File:Carved Pumpkin.png|16px]] [[Carved Pumpkin]] +|{{cd|pumpkin}} +|[[File:Carved Pumpkin.png|16px]] [[Carved Pumpkin]] +|{{cd|carved_pumpkin}} +|- +|Rename +|[[File:Jack o'Lantern.png|16px]] [[Jack o'Lantern]] +|{{cd|lit_pumpkin}} +|[[File:Jack o'Lantern.png|16px]] [[Jack o'Lantern]] +|{{cd|jack_o_lantern}} +|- +|Rename +|[[File:Oak Trapdoor.png|16px]] [[Oak Trapdoor]] +|{{cd|trapdoor}} +|[[File:Oak Trapdoor.png|16px]] [[Oak Trapdoor]] +|{{cd|oak_trapdoor}} +|- +|rowspan="6"|Separate +|rowspan="6"|[[File:Stone.png|16px]] [[Infested Block]] +|rowspan="6"|{{cd|monster_egg}} +|[[File:Stone.png|16px]] [[Infested Stone]] +|{{cd|infested_stone}} +|- +|[[File:Cobblestone.png|16px]] [[Infested Cobblestone]] +|{{cd|infested_cobblestone}} +|- +|[[File:Stone Bricks.png|16px]] [[Infested Stone Bricks]] +|{{cd|infested_stone_bricks}} +|- +|[[File:Mossy Stone Bricks.png|16px]] [[Infested Mossy Stone Bricks]] +|{{cd|infested_mossy_stone_bricks}} +|- +|[[File:Cracked Stone Bricks.png|16px]] [[Infested Cracked Stone Bricks]] +|{{cd|infested_cracked_stone_bricks}} +|- +|[[File:Chiseled Stone Bricks.png|16px]] [[Infested Chiseled Stone Bricks]] +|{{cd|infested_chiseled_stone_bricks}} +|- +|rowspan="4"|Separate +|rowspan="4"|[[File:Stone Bricks.png|16px]] [[Stone Bricks]] +|rowspan="4"|{{cd|stonebrick}} +|[[File:Stone Bricks.png|16px]] [[Stone Bricks]] +|{{cd|stone_bricks}} +|- +|[[File:Mossy Stone Bricks.png|16px]] [[Mossy Stone Bricks]] +|{{cd|mossy_stone_bricks}} +|- +|[[File:Cracked Stone Bricks.png|16px]] [[Cracked Stone Bricks]] +|{{cd|cracked_stone_bricks}} +|- +|[[File:Chiseled Stone Bricks.png|16px]] [[Chiseled Stone Bricks]] +|{{cd|chiseled_stone_bricks}} +|- +|rowspan="4"|Separate and merge +|rowspan="2"|[[File:Brown Mushroom Block.png|16px]] [[Brown Mushroom Block]] +|rowspan="2"|{{cd|brown_mushroom_block}} +|[[File:Brown Mushroom Block.png|16px]] [[Brown Mushroom Block]] +|{{cd|brown_mushroom_block}} +|- +|rowspan="2"|[[File:Mushroom Stem.png|16px]] [[Mushroom Stem]] +|rowspan="2"|{{cd|mushroom_stem}} +|- +|rowspan="2"|[[File:Red Mushroom Block.png|16px]] [[Red Mushroom Block]] +|rowspan="2"|{{cd|red_mushroom_block}} +|- +|[[File:Red Mushroom Block.png|16px]] [[Red Mushroom Block]] +|{{cd|red_mushroom_block}} +|- +|Rename +|[[File:Melon.png|16px]] [[Melon]] +|{{cd|melon_block}} +|[[File:Melon.png|16px]] [[Melon]] +|{{cd|melon}} +|- +|Rename +|[[File:Oak Fence Gate.png|16px]] [[Oak Fence Gate]] +|{{cd|fence_gate}} +|[[File:Oak Fence Gate.png|16px]] [[Oak Fence Gate]] +|{{cd|oak_fence_gate}} +|- +|Rename +|[[File:Lily Pad.png|16px]] [[Lily Pad]] +|{{cd|waterlily}} +|[[File:Lily Pad.png|16px]] [[Lily Pad]] +|{{cd|lily_pad}} +|- +|Rename +|[[File:Nether Bricks.png|16px]] [[Nether Bricks]] +|{{cd|nether_brick}} +|[[File:Nether Bricks.png|16px]] [[Nether Bricks]] +|{{cd|nether_bricks}} +|- +|Rename +|[[File:End Stone Bricks.png|16px]] [[End Stone Bricks]] +|{{cd|end_bricks}} +|[[File:End Stone Bricks.png|16px]] [[End Stone Bricks]] +|{{cd|end_stone_bricks}} +|- +|rowspan="2"|Merge +|[[File:Redstone Lamp.png|16px]] [[Redstone Lamp]] +|{{cd|redstone_lamp}} +|rowspan="2"|[[File:Redstone Lamp.png|16px]] [[Redstone Lamp]] +|rowspan="2"|{{cd|redstone_lamp}} +|- +|[[File:Lit Redstone Lamp.png|16px]] [[Lit Redstone Lamp]] +|{{cd|lit_redstone_lamp}} +|- +|rowspan="2"|Separate +|rowspan="2"|[[File:Cobblestone Wall.png|16px]] [[Cobblestone Wall]] +|rowspan="2"|{{cd|cobblestone_wall}} +|[[File:Cobblestone Wall.png|16px]] [[Cobblestone Wall]] +|{{cd|cobblestone_wall}} +|- +|[[File:Mossy Cobblestone Wall.png|16px]] [[Mossy Cobblestone Wall]] +|{{cd|mossy_cobblestone_wall}} +|- +|Rename +|[[File:Oak Button.png|16px]] [[Oak Button]] +|{{cd|wooden_button}} +|[[File:Oak Button.png|16px]] [[Oak Button]] +|{{cd|oak_button}} +|- +|rowspan="3"|Separate +|rowspan="3"|[[File:Anvil.png|16px]] [[Anvil]] +|rowspan="3"|{{cd|anvil}} +|[[File:Anvil.png|16px]] [[Anvil]] +|{{cd|anvil}} +|- +|[[File:Chipped Anvil.png|16px]] [[Chipped Anvil]] +|{{cd|chipped_anvil}} +|- +|[[File:Damaged Anvil.png|16px]] [[Damaged Anvil]] +|{{cd|damaged_anvil}} +|- +|rowspan="2"|Merge +|[[File:Daylight Detector.png|16px]] [[Daylight Detector]] +|{{cd|daylight_detector}} +|rowspan="2"|[[File:Daylight Detector.png|16px]] [[Daylight Detector]] +|rowspan="2"|{{cd|daylight_detector}} +|- +|[[File:Inverted Daylight Detector.png|16px]] [[Daylight Detector|Inverted Daylight Detector]] +|{{cd|daylight_detector_inverted}} +|- +|Rename +|[[File:Nether Quartz Ore.png|16px]] [[Nether Quartz Ore]] +|{{cd|quartz_ore}} +|[[File:Nether Quartz Ore.png|16px]] [[Nether Quartz Ore]] +|{{cd|nether_quartz_ore}} +|- +|rowspan="3"|Separate +|rowspan="3"|[[File:Block of Quartz.png|16px]] [[Block of Quartz]] +|rowspan="3"|{{cd|quartz_block}} +|[[File:Block of Quartz.png|16px]] [[Block of Quartz]] +|{{cd|quartz_block}} +|- +|[[File:Chiseled Quartz Block.png|16px]] [[Chiseled Quartz Block]] +|{{cd|chiseled_quartz_block}} +|- +|[[File:Quartz Pillar.png|16px]] [[Quartz Pillar]] +|{{cd|quartz_pillar}} +|- +|rowspan="16"|Separate +|rowspan="16"|[[File:White Terracotta.png|16px]] [[Stained Terracotta]] +|rowspan="16"|{{cd|stained_hardened_clay}} +|[[File:White Terracotta.png|16px]] [[White Terracotta]] +|{{cd|white_terracotta}} +|- +|[[File:Orange Terracotta.png|16px]] [[Orange Terracotta]] +|{{cd|orange_terracotta}} +|- +|[[File:Magenta Terracotta.png|16px]] [[Magenta Terracotta]] +|{{cd|magenta_terracotta}} +|- +|[[File:Light Blue Terracotta.png|16px]] [[Light Blue Terracotta]] +|{{cd|light_blue_terracotta}} +|- +|[[File:Yellow Terracotta.png|16px]] [[Yellow Terracotta]] +|{{cd|yellow_terracotta}} +|- +|[[File:Lime Terracotta.png|16px]] [[Lime Terracotta]] +|{{cd|lime_terracotta}} +|- +|[[File:Pink Terracotta.png|16px]] [[Pink Terracotta]] +|{{cd|pink_terracotta}} +|- +|[[File:Gray Terracotta.png|16px]] [[Gray Terracotta]] +|{{cd|gray_terracotta}} +|- +|[[File:Light Gray Terracotta.png|16px]] [[Light Gray Terracotta]] +|{{cd|light_gray_terracotta}} +|- +|[[File:Cyan Terracotta.png|16px]] [[Cyan Terracotta]] +|{{cd|cyan_terracotta}} +|- +|[[File:Purple Terracotta.png|16px]] [[Purple Terracotta]] +|{{cd|purple_terracotta}} +|- +|[[File:Blue Terracotta.png|16px]] [[Blue Terracotta]] +|{{cd|blue_terracotta}} +|- +|[[File:Brown Terracotta.png|16px]] [[Brown Terracotta]] +|{{cd|brown_terracotta}} +|- +|[[File:Green Terracotta.png|16px]] [[Green Terracotta]] +|{{cd|green_terracotta}} +|- +|[[File:Red Terracotta.png|16px]] [[Red Terracotta]] +|{{cd|red_terracotta}} +|- +|[[File:Black Terracotta.png|16px]] [[Black Terracotta]] +|{{cd|black_terracotta}} +|- +|rowspan="16"|Separate +|rowspan="16"|[[File:White Carpet.png|16px]] [[Carpet]] +|rowspan="16"|{{cd|carpet}} +|[[File:White Carpet.png|16px]] [[White Carpet]] +|{{cd|white_carpet}} +|- +|[[File:Orange Carpet.png|16px]] [[Orange Carpet]] +|{{cd|orange_carpet}} +|- +|[[File:Magenta Carpet.png|16px]] [[Magenta Carpet]] +|{{cd|magenta_carpet}} +|- +|[[File:Light Blue Carpet.png|16px]] [[Light Blue Carpet]] +|{{cd|light_blue_carpet}} +|- +|[[File:Yellow Carpet.png|16px]] [[Yellow Carpet]] +|{{cd|yellow_carpet}} +|- +|[[File:Lime Carpet.png|16px]] [[Lime Carpet]] +|{{cd|lime_carpet}} +|- +|[[File:Pink Carpet.png|16px]] [[Pink Carpet]] +|{{cd|pink_carpet}} +|- +|[[File:Gray Carpet.png|16px]] [[Gray Carpet]] +|{{cd|gray_carpet}} +|- +|[[File:Light Gray Carpet.png|16px]] [[Light Gray Carpet]] +|{{cd|light_gray_carpet}} +|- +|[[File:Cyan Carpet.png|16px]] [[Cyan Carpet]] +|{{cd|cyan_carpet}} +|- +|[[File:Purple Carpet.png|16px]] [[Purple Carpet]] +|{{cd|purple_carpet}} +|- +|[[File:Blue Carpet.png|16px]] [[Blue Carpet]] +|{{cd|blue_carpet}} +|- +|[[File:Brown Carpet.png|16px]] [[Brown Carpet]] +|{{cd|brown_carpet}} +|- +|[[File:Green Carpet.png|16px]] [[Green Carpet]] +|{{cd|green_carpet}} +|- +|[[File:Red Carpet.png|16px]] [[Red Carpet]] +|{{cd|red_carpet}} +|- +|[[File:Black Carpet.png|16px]] [[Black Carpet]] +|{{cd|black_carpet}} +|- +|Rename +|[[File:Terracotta.png|16px]] [[Terracotta]] +|{{cd|hardened_clay}} +|[[File:Terracotta.png|16px]] [[Terracotta]] +|{{cd|terracotta}} +|- +|Rename +|[[File:Slime Block.png|16px]] [[Slime Block]] +|{{cd|slime}} +|[[File:Slime Block.png|16px]] [[Slime Block]] +|{{cd|slime_block}} +|- +|rowspan="6"|Separate +|rowspan="6"|[[File:Sunflower.png|16px]] [[Flower|Double Plant]] +|rowspan="6"|{{cd|double_plant}} +|[[File:Sunflower.png|16px]] [[Sunflower]] +|{{cd|sunflower}} +|- +|[[File:Lilac.png|16px]] [[Lilac]] +|{{cd|lilac}} +|- +|[[File:Tall Grass.png|16px]] [[Tall Grass]] +|{{cd|tall_grass}} +|- +|[[File:Large Fern.png|16px]] [[Large Fern]] +|{{cd|large_fern}} +|- +|[[File:Rose Bush.png|16px]] [[Rose Bush]] +|{{cd|rose_bush}} +|- +|[[File:Peony.png|16px]] [[Peony]] +|{{cd|peony}} +|- +|rowspan="16"|Separate +|rowspan="16"|[[File:White Stained Glass.png|16px]] [[Stained Glass]] +|rowspan="16"|{{cd|stained_glass}} +|[[File:White Stained Glass.png|16px]] [[White Stained Glass]] +|{{cd|white_stained_glass}} +|- +|[[File:Orange Stained Glass.png|16px]] [[Orange Stained Glass]] +|{{cd|orange_stained_glass}} +|- +|[[File:Magenta Stained Glass.png|16px]] [[Magenta Stained Glass]] +|{{cd|magenta_stained_glass}} +|- +|[[File:Light Blue Stained Glass.png|16px]] [[Light Blue Stained Glass]] +|{{cd|light_blue_stained_glass}} +|- +|[[File:Yellow Stained Glass.png|16px]] [[Yellow Stained Glass]] +|{{cd|yellow_stained_glass}} +|- +|[[File:Lime Stained Glass.png|16px]] [[Lime Stained Glass]] +|{{cd|lime_stained_glass}} +|- +|[[File:Pink Stained Glass.png|16px]] [[Pink Stained Glass]] +|{{cd|pink_stained_glass}} +|- +|[[File:Gray Stained Glass.png|16px]] [[Gray Stained Glass]] +|{{cd|gray_stained_glass}} +|- +|[[File:Light Gray Stained Glass.png|16px]] [[Light Gray Stained Glass]] +|{{cd|light_gray_stained_glass}} +|- +|[[File:Cyan Stained Glass.png|16px]] [[Cyan Stained Glass]] +|{{cd|cyan_stained_glass}} +|- +|[[File:Purple Stained Glass.png|16px]] [[Purple Stained Glass]] +|{{cd|purple_stained_glass}} +|- +|[[File:Blue Stained Glass.png|16px]] [[Blue Stained Glass]] +|{{cd|blue_stained_glass}} +|- +|[[File:Brown Stained Glass.png|16px]] [[Brown Stained Glass]] +|{{cd|brown_stained_glass}} +|- +|[[File:Green Stained Glass.png|16px]] [[Green Stained Glass]] +|{{cd|green_stained_glass}} +|- +|[[File:Red Stained Glass.png|16px]] [[Red Stained Glass]] +|{{cd|red_stained_glass}} +|- +|[[File:Black Stained Glass.png|16px]] [[Black Stained Glass]] +|{{cd|black_stained_glass}} +|- +|rowspan="16"|Separate +|rowspan="16"|[[File:White Stained Glass Pane.png|16px]] [[Stained Glass Pane]] +|rowspan="16"|{{cd|stained_glass_pane}} +|[[File:White Stained Glass Pane.png|16px]] [[White Stained Glass Pane]] +|{{cd|white_stained_glass_pane}} +|- +|[[File:Orange Stained Glass Pane.png|16px]] [[Orange Stained Glass Pane]] +|{{cd|orange_stained_glass_pane}} +|- +|[[File:Magenta Stained Glass Pane.png|16px]] [[Magenta Stained Glass Pane]] +|{{cd|magenta_stained_glass_pane}} +|- +|[[File:Light Blue Stained Glass Pane.png|16px]] [[Light Blue Stained Glass Pane]] +|{{cd|light_blue_stained_glass_pane}} +|- +|[[File:Yellow Stained Glass Pane.png|16px]] [[Yellow Stained Glass Pane]] +|{{cd|yellow_stained_glass_pane}} +|- +|[[File:Lime Stained Glass Pane.png|16px]] [[Lime Stained Glass Pane]] +|{{cd|lime_stained_glass_pane}} +|- +|[[File:Pink Stained Glass Pane.png|16px]] [[Pink Stained Glass Pane]] +|{{cd|pink_stained_glass_pane}} +|- +|[[File:Gray Stained Glass Pane.png|16px]] [[Gray Stained Glass Pane]] +|{{cd|gray_stained_glass_pane}} +|- +|[[File:Light Gray Stained Glass Pane.png|16px]] [[Light Gray Stained Glass Pane]] +|{{cd|light_gray_stained_glass_pane}} +|- +|[[File:Cyan Stained Glass Pane.png|16px]] [[Cyan Stained Glass Pane]] +|{{cd|cyan_stained_glass_pane}} +|- +|[[File:Purple Stained Glass Pane.png|16px]] [[Purple Stained Glass Pane]] +|{{cd|purple_stained_glass_pane}} +|- +|[[File:Blue Stained Glass Pane.png|16px]] [[Blue Stained Glass Pane]] +|{{cd|blue_stained_glass_pane}} +|- +|[[File:Brown Stained Glass Pane.png|16px]] [[Brown Stained Glass Pane]] +|{{cd|brown_stained_glass_pane}} +|- +|[[File:Green Stained Glass Pane.png|16px]] [[Green Stained Glass Pane]] +|{{cd|green_stained_glass_pane}} +|- +|[[File:Red Stained Glass Pane.png|16px]] [[Red Stained Glass Pane]] +|{{cd|red_stained_glass_pane}} +|- +|[[File:Black Stained Glass Pane.png|16px]] [[Black Stained Glass Pane]] +|{{cd|black_stained_glass_pane}} +|- +|rowspan="3"|Separate +|rowspan="3"|[[File:Prismarine.png|16px]] [[Prismarine]] +|rowspan="3"|{{cd|prismarine}} +|[[File:Prismarine.png|16px]] [[Prismarine]] +|{{cd|prismarine}} +|- +|[[File:Prismarine Bricks.png|16px]] [[Prismarine Bricks]] +|{{cd|prismarine_bricks}} +|- +|[[File:Dark Prismarine.png|16px]] [[Dark Prismarine]] +|{{cd|dark_prismarine}} +|- +|rowspan="3"|Separate +|rowspan="3"|[[File:Red Sandstone.png|16px]] [[Red Sandstone]] +|rowspan="3"|{{cd|red_sandstone}} +|[[File:Red Sandstone.png|16px]] [[Red Sandstone]] +|{{cd|red_sandstone}} +|- +|[[File:Chiseled Red Sandstone.png|16px]] [[Chiseled Red Sandstone]] +|{{cd|chiseled_red_sandstone}} +|- +|[[File:Cut Red Sandstone.png|16px]] [[Cut Red Sandstone]] +|{{cd|cut_red_sandstone}} +|- +|Rename +|[[File:Magma Block.png|16px]] [[Magma Block]] +|{{cd|magma}} +|[[File:Magma Block.png|16px]] [[Magma Block]] +|{{cd|magma_block}} +|- +|Rename +|[[File:Red Nether Bricks.png|16px]] [[Red Nether Bricks]] +|{{cd|red_nether_brick}} +|[[File:Red Nether Bricks.png|16px]] [[Red Nether Bricks]] +|{{cd|red_nether_bricks}} +|- +|Rename +|[[File:Light Gray Shulker Box.png|16px]] [[Light Gray Shulker Box]] +|{{cd|silver_shulker_box}} +|[[File:Light Gray Shulker Box.png|16px]] [[Light Gray Shulker Box]] +|{{cd|light_gray_shulker_box}} +|- +|Rename +|[[File:Light Gray Glazed Terracotta.png|16px]] [[Light Gray Glazed Terracotta]] +|{{cd|silver_glazed_terracotta}} +|[[File:Light Gray Glazed Terracotta.png|16px]] [[Light Gray Glazed Terracotta]] +|{{cd|light_gray_glazed_terracotta}} +|- +|rowspan="16"|Separate +|rowspan="16"|[[File:White Concrete.png|16px]] [[Concrete]] +|rowspan="16"|{{cd|concrete}} +|[[File:White Concrete.png|16px]] [[White Concrete]] +|{{cd|white_concrete}} +|- +|[[File:Orange Concrete.png|16px]] [[Orange Concrete]] +|{{cd|orange_concrete}} +|- +|[[File:Magenta Concrete.png|16px]] [[Magenta Concrete]] +|{{cd|magenta_concrete}} +|- +|[[File:Light Blue Concrete.png|16px]] [[Light Blue Concrete]] +|{{cd|light_blue_concrete}} +|- +|[[File:Yellow Concrete.png|16px]] [[Yellow Concrete]] +|{{cd|yellow_concrete}} +|- +|[[File:Lime Concrete.png|16px]] [[Lime Concrete]] +|{{cd|lime_concrete}} +|- +|[[File:Pink Concrete.png|16px]] [[Pink Concrete]] +|{{cd|pink_concrete}} +|- +|[[File:Gray Concrete.png|16px]] [[Gray Concrete]] +|{{cd|gray_concrete}} +|- +|[[File:Light Gray Concrete.png|16px]] [[Light Gray Concrete]] +|{{cd|light_gray_concrete}} +|- +|[[File:Cyan Concrete.png|16px]] [[Cyan Concrete]] +|{{cd|cyan_concrete}} +|- +|[[File:Purple Concrete.png|16px]] [[Purple Concrete]] +|{{cd|purple_concrete}} +|- +|[[File:Blue Concrete.png|16px]] [[Blue Concrete]] +|{{cd|blue_concrete}} +|- +|[[File:Brown Concrete.png|16px]] [[Brown Concrete]] +|{{cd|brown_concrete}} +|- +|[[File:Green Concrete.png|16px]] [[Green Concrete]] +|{{cd|green_concrete}} +|- +|[[File:Red Concrete.png|16px]] [[Red Concrete]] +|{{cd|red_concrete}} +|- +|[[File:Black Concrete.png|16px]] [[Black Concrete]] +|{{cd|black_concrete}} +|- +|rowspan="16"|Separate +|rowspan="16"|[[File:White Concrete Powder.png|16px]] [[Concrete Powder]] +|rowspan="16"|{{cd|concrete_powder}} +|[[File:White Concrete Powder.png|16px]] [[White Concrete Powder]] +|{{cd|white_concrete_powder}} +|- +|[[File:Orange Concrete Powder.png|16px]] [[Orange Concrete Powder]] +|{{cd|orange_concrete_powder}} +|- +|[[File:Magenta Concrete Powder.png|16px]] [[Magenta Concrete Powder]] +|{{cd|magenta_concrete_powder}} +|- +|[[File:Light Blue Concrete Powder.png|16px]] [[Light Blue Concrete Powder]] +|{{cd|light_blue_concrete_powder}} +|- +|[[File:Yellow Concrete Powder.png|16px]] [[Yellow Concrete Powder]] +|{{cd|yellow_concrete_powder}} +|- +|[[File:Lime Concrete Powder.png|16px]] [[Lime Concrete Powder]] +|{{cd|lime_concrete_powder}} +|- +|[[File:Pink Concrete Powder.png|16px]] [[Pink Concrete Powder]] +|{{cd|pink_concrete_powder}} +|- +|[[File:Gray Concrete Powder.png|16px]] [[Gray Concrete Powder]] +|{{cd|gray_concrete_powder}} +|- +|[[File:Light Gray Concrete Powder.png|16px]] [[Light Gray Concrete Powder]] +|{{cd|light_gray_concrete_powder}} +|- +|[[File:Cyan Concrete Powder.png|16px]] [[Cyan Concrete Powder]] +|{{cd|cyan_concrete_powder}} +|- +|[[File:Purple Concrete Powder.png|16px]] [[Purple Concrete Powder]] +|{{cd|purple_concrete_powder}} +|- +|[[File:Blue Concrete Powder.png|16px]] [[Blue Concrete Powder]] +|{{cd|blue_concrete_powder}} +|- +|[[File:Brown Concrete Powder.png|16px]] [[Brown Concrete Powder]] +|{{cd|brown_concrete_powder}} +|- +|[[File:Green Concrete Powder.png|16px]] [[Green Concrete Powder]] +|{{cd|green_concrete_powder}} +|- +|[[File:Red Concrete Powder.png|16px]] [[Red Concrete Powder]] +|{{cd|red_concrete_powder}} +|- +|[[File:Black Concrete Powder.png|16px]] [[Black Concrete Powder]] +|{{cd|black_concrete_powder}} +|- +|rowspan="2"|Merge +|[[File:Oak Door.png|16px]] [[Oak Door]] +|{{cd|wooden_door}} +|rowspan="2"|[[File:Oak Door.png|16px]] [[Oak Door]] +|rowspan="2"|{{cd|oak_door}} +|- +|{{BlockLink|Oak Door}} (Item) +|{{cd|oak_door}} +|- +|rowspan="2"|Merge +|[[File:Spruce Door.png|16px]] [[Spruce Door]] +|{{cd|spruce_door}} +|rowspan="2"|[[File:Spruce Door.png|16px]] [[Spruce Door]] +|rowspan="2"|{{cd|spruce_door}} +|- +|{{BlockLink|Spruce Door}} (Item) +|{{cd|spruce_door}} +|- +|rowspan="2"|Merge +|[[File:Birch Door.png|16px]] [[Birch Door]] +|{{cd|birch_door}} +|rowspan="2"|[[File:Birch Door.png|16px]] [[Birch Door]] +|rowspan="2"|{{cd|birch_door}} +|- +|{{BlockLink|Birch Door}} (Item) +|{{cd|birch_door}} +|- +|rowspan="2"|Merge +|[[File:Jungle Door.png|16px]] [[Jungle Door]] +|{{cd|jungle_door}} +|rowspan="2"|[[File:Jungle Door.png|16px]] [[Jungle Door]] +|rowspan="2"|{{cd|jungle_door}} +|- +|{{BlockLink|Jungle Door}} (Item) +|{{cd|jungle_door}} +|- +|rowspan="2"|Merge +|[[File:Acacia Door.png|16px]] [[Acacia Door]] +|{{cd|acacia_door}} +|rowspan="2"|[[File:Acacia Door.png|16px]] [[Acacia Door]] +|rowspan="2"|{{cd|acacia_door}} +|- +|{{BlockLink|Acacia Door}} (Item) +|{{cd|acacia_door}} +|- +|rowspan="2"|Merge +|[[File:Dark Oak Door.png|16px]] [[Dark Oak Door]] +|{{cd|dark_oak_door}} +|rowspan="2"|[[File:Dark Oak Door.png|16px]] [[Dark Oak Door]] +|rowspan="2"|{{cd|dark_oak_door}} +|- +|{{BlockLink|Dark Oak Door}} (Item) +|{{cd|dark_oak_door}} +|- +|rowspan="2"|Merge +|[[File:Iron Door.png|16px]] [[Iron Door]] +|{{cd|iron_door}} +|rowspan="2"|[[File:Iron Door.png|16px]] [[Iron Door]] +|rowspan="2"|{{cd|iron_door}} +|- +|{{BlockLink|Iron Door}} (Item) +|{{cd|iron_door}} +|- +|rowspan="2"|Merge +|[[File:Nether Wart.png|16px]] [[Nether Wart]] +|{{cd|nether_wart}} +|rowspan="2"|[[File:Nether Wart.png|16px]] [[Nether Wart]] +|rowspan="2"|{{cd|nether_wart}} +|- +|{{BlockLink|Nether Wart}} (Item) +|{{cd|nether_wart}} +|- +|rowspan="3"|Merge +|[[File:Redstone Repeater (S) JE4.png|16px]] [[Repeater|Unpowered Redstone Repeater]] +|{{cd|unpowered_repeater}} +|rowspan="3"|{{ItemLink|Redstone Repeater}} +|rowspan="3"|{{cd|repeater}} +|- +|[[File:Powered Redstone Repeater (S) JE7.png|16px]] [[Repeater|Powered Redstone Repeater]] +|{{cd|powered_repeater}} +|- +|{{ItemLink|Redstone Repeater}} +|{{cd|repeater}} +|- +|rowspan="3"|Merge +|[[File:Redstone Comparator.png|16px]] [[Redstone Comparator|Unpowered Redstone Comparator]] +|{{cd|unpowered_comparator}} +|rowspan="3"|[[File:Redstone Comparator (item).png|16px]] [[Redstone Comparator]] +|rowspan="3"|{{cd|comparator}} +|- +|[[File:Powered Redstone Comparator.png|16px]] [[Redstone Comparator|Powered Redstone Comparator]] +|{{cd|powered_comparator}} +|- +|{{ItemLink|Redstone Comparator}} +|{{cd|comparator}} +|- +|rowspan="2"|Separate +|rowspan="2"|{{ItemLink|Coal}} +|rowspan="2"|{{cd|coal}} +|{{ItemLink|Coal}} +|{{cd|coal}} +|- +|{{ItemLink|Charcoal}} +|{{cd|charcoal}} +|- +|rowspan="2"|Separate +|rowspan="2"|{{ItemLink|Golden Apple}} +|rowspan="2"|{{cd|golden_apple}} +|{{ItemLink|Golden Apple}} +|{{cd|golden_apple}} +|- +|{{ItemLink|Enchanted Golden Apple}} +|{{cd|enchanted_golden_apple}} +|- +|rowspan="2"|Merge +|[[File:Oak Standing Sign.png|16px]] [[Sign|Standing Sign]] +|{{cd|standing_sign}} +|rowspan="2"|[[File:Oak Sign.png|16px]] [[Sign]] +|rowspan="2"|{{cd|sign}} +|- +|{{ItemLink|Oak Sign|Sign}} (Item) +|{{cd|sign}} +|- +|rowspan="2"|Merge +|[[File:Water.png|16px]] [[Water]] +|{{cd|water}} +|rowspan="2"|[[File:Water.png|16px]] [[Water]] +|rowspan="2"|{{cd|water}} +|- +|[[File:Water.png|16px]] [[Flowing Water]] +|{{cd|flowing_water}} +|- +|rowspan="2"|Merge +|[[File:Lava.png|16px]] [[Lava]] +|{{cd|lava}} +|rowspan="2"|[[File:Lava.png|16px]] [[Lava]] +|rowspan="2"|{{cd|lava}} +|- +|[[File:Lava.png|16px]] [[Flowing Lava]] +|{{cd|flowing_lava}} +|- +|Rename +|{{ItemLink|Oak Boat}} +|{{cd|boat}} +|{{ItemLink|Oak Boat}} +|{{cd|oak_boat}} +|- +|rowspan="2"|Rename and Merge +|[[File:Sugar_Cane.png|16px]] [[Sugar Cane]] +|{{cd|reeds}} +|rowspan="2"|[[File:Sugar_Cane.png|16px]] [[Sugar Cane]] +|rowspan="2"|{{cd|sugar_cane}} +|- +|{{ItemLink|Sugar Cane}} +|{{cd|sugar_canes}} +|- +|rowspan="2"|Merge +|[[File:Brewing Stand.png|16px]] [[Brewing Stand]] +|{{cd|brewing_stand}} +|rowspan="2"|[[File:Brewing Stand.png|16px]] [[Brewing Stand]] +|rowspan="2"|{{cd|brewing_stand}} +|- +|{{ItemLink|Brewing Stand}} (Item) +|{{cd|brewing_stand}} +|- +|rowspan="4"|Separate +|rowspan="4"|{{ItemLink|id=Raw Cod|Raw Fish}} +|rowspan="4"|{{cd|fish}} +|{{ItemLink|Raw Cod}} +|{{cd|cod}} +|- +|{{ItemLink|Raw Salmon}} +|{{cd|salmon}} +|- +|{{ItemLink|Tropical Fish}} +|{{cd|tropical_fish}} +|- +|{{ItemLink|Pufferfish}} +|{{cd|pufferfish}} +|- +|rowspan="2"|Separate +|rowspan="2"|{{ItemLink|id=Cooked Cod|Cooked Fish}} +|rowspan="2"|{{cd|cooked_fish}} +|{{ItemLink|Cooked Cod}} +|{{cd|cooked_cod}} +|- +|{{ItemLink|Cooked Salmon}} +|{{cd|cooked_salmon}} +|- +|rowspan="16"|Separate +|rowspan="16"|{{ItemLink|Bone Meal|Dye}} +|rowspan="16"|{{cd|dye}} +|{{ItemLink|Bone Meal}} +|{{cd|bone_meal}} +|- +|{{ItemLink|Orange Dye}} +|{{cd|orange_dye}} +|- +|{{ItemLink|Magenta Dye}} +|{{cd|magenta_dye}} +|- +|{{ItemLink|Light Blue Dye}} +|{{cd|light_blue_dye}} +|- +|{{ItemLink|Yellow Dye|Dandelion Yellow}} +|{{cd|dandelion_yellow}} +|- +|{{ItemLink|Lime Dye}} +|{{cd|lime_dye}} +|- +|{{ItemLink|Pink Dye}} +|{{cd|pink_dye}} +|- +|{{ItemLink|Gray Dye}} +|{{cd|gray_dye}} +|- +|{{ItemLink|Light Gray Dye}} +|{{cd|light_gray_dye}} +|- +|{{ItemLink|Cyan Dye}} +|{{cd|cyan_dye}} +|- +|{{ItemLink|Purple Dye}} +|{{cd|purple_dye}} +|- +|{{ItemLink|Lapis Lazuli}} +|{{cd|lapis_lazuli}} +|- +|{{ItemLink|Cocoa Beans}} +|{{cd|cocoa_beans}} +|- +|{{ItemLink|Green Dye|Cactus Green}} +|{{cd|cactus_green}} +|- +|{{ItemLink|Red Dye|Rose Red}} +|{{cd|rose_red}} +|- +|{{ItemLink|Ink Sac}} +|{{cd|ink_sac}} +|- +|rowspan="17"|Separate and merge +|rowspan="8"|[[File:White Bed.png|16px]] [[Bed]] +|rowspan="8"|{{cd|bed}} +|[[File:White Bed.png|16px]] [[White Bed]] +|{{cd|white_bed}} +|- +|[[File:Orange Bed.png|16px]] [[Orange Bed]] +|{{cd|orange_bed}} +|- +|[[File:Magenta Bed.png|16px]] [[Magenta Bed]] +|{{cd|magenta_bed}} +|- +|[[File:Light Blue Bed.png|16px]] [[Light Blue Bed]] +|{{cd|light_blue_bed}} +|- +|[[File:Yellow Bed.png|16px]] [[Yellow Bed]] +|{{cd|yellow_bed}} +|- +|[[File:Lime Bed.png|16px]] [[Lime Bed]] +|{{cd|lime_bed}} +|- +|[[File:Pink Bed.png|16px]] [[Pink Bed]] +|{{cd|pink_bed}} +|- +|[[File:Gray Bed.png|16px]] [[Gray Bed]] +|{{cd|gray_bed}} +|- +|rowspan="9"|{{ItemLink|id=White Bed|Bed}} (Item) +|rowspan="9"|{{cd|bed}} +|- +|[[File:Light Gray Bed.png|16px]] [[Light Gray Bed]] +|{{cd|light_gray_bed}} +|- +|[[File:Cyan Bed.png|16px]] [[Cyan Bed]] +|{{cd|cyan_bed}} +|- +|[[File:Purple Bed.png|16px]] [[Purple Bed]] +|{{cd|purple_bed}} +|- +|[[File:Blue Bed.png|16px]] [[Blue Bed]] +|{{cd|blue_bed}} +|- +|[[File:Brown Bed.png|16px]] [[Brown Bed]] +|{{cd|brown_bed}} +|- +|[[File:Green Bed.png|16px]] [[Green Bed]] +|{{cd|green_bed}} +|- +|[[File:Red Bed.png|16px]] [[Red Bed]] +|{{cd|red_bed}} +|- +|[[File:Black Bed.png|16px]] [[Black Bed]] +|{{cd|black_bed}} +|- +|Rename +|{{ItemLink|Melon Slice}} +|{{cd|melon}} +|{{ItemLink|Melon Slice}} +|{{cd|melon_slice}} +|- +|rowspan="2"|Separate +|rowspan="2"|[[File:Pumpkin Stem.png|16px]] [[Pumpkin Stem]] +|rowspan="2"|{{cd|pumpkin_stem}} +|[[File:Pumpkin Stem.png|16px]] [[Pumpkin Stem]] +|{{cd|pumpkin_stem}} +|- +|[[File:Attached Pumpkin Stem.png|16px]] [[Attached Pumpkin Stem]] +|{{cd|attached_pumpkin_stem}} +|- +|rowspan="2"|Separate +|rowspan="2"|[[File:Melon Stem.png|16px]] [[Melon Stem]] +|rowspan="2"|{{cd|melon_stem}} +|[[File:Melon Stem.png|16px]] [[Melon Stem]] +|{{cd|melon_stem}} +|- +|[[File:Attached Melon Stem.png|16px]] [[Attached Melon Stem]] +|{{cd|attached_melon_stem}} +|- +|Rename +|{{ItemLink|Glistering Melon Slice}} +|{{cd|speckled_melon}} +|{{ItemLink|Glistering Melon Slice}} +|{{cd|glistering_melon_slice}} +|- +|rowspan="43"|Separate +|rowspan="43"|{{ItemLink|Spawn Egg}} +|rowspan="43"|{{cd|spawn_egg}} +|{{ItemLink|Bat Spawn Egg}} +|{{cd|bat_spawn_egg}} +|- +|{{ItemLink|Blaze Spawn Egg}} +|{{cd|blaze_spawn_egg}} +|- +|{{ItemLink|Cave Spider Spawn Egg}} +|{{cd|cave_spider_spawn_egg}} +|- +|{{ItemLink|Chicken Spawn Egg}} +|{{cd|chicken_spawn_egg}} +|- +|{{ItemLink|Cow Spawn Egg}} +|{{cd|cow_spawn_egg}} +|- +|{{ItemLink|Creeper Spawn Egg}} +|{{cd|creeper_spawn_egg}} +|- +|{{ItemLink|Donkey Spawn Egg}} +|{{cd|donkey_spawn_egg}} +|- +|{{ItemLink|Elder Guardian Spawn Egg}} +|{{cd|elder_guardian_spawn_egg}} +|- +|{{ItemLink|Enderman Spawn Egg}} +|{{cd|enderman_spawn_egg}} +|- +|{{ItemLink|Endermite Spawn Egg}} +|{{cd|endermite_spawn_egg}} +|- +|{{ItemLink|Evoker Spawn Egg}} +|{{cd|evoker_spawn_egg}} +|- +|{{ItemLink|Ghast Spawn Egg}} +|{{cd|ghast_spawn_egg}} +|- +|{{ItemLink|Guardian Spawn Egg}} +|{{cd|guardian_spawn_egg}} +|- +|{{ItemLink|Horse Spawn Egg}} +|{{cd|horse_spawn_egg}} +|- +|{{ItemLink|Husk Spawn Egg}} +|{{cd|husk_spawn_egg}} +|- +|{{ItemLink|Llama Spawn Egg}} +|{{cd|llama_spawn_egg}} +|- +|{{ItemLink|Magma Cube Spawn Egg}} +|{{cd|magma_cube_spawn_egg}} +|- +|{{ItemLink|Mooshroom Spawn Egg}} +|{{cd|mooshroom_spawn_egg}} +|- +|{{ItemLink|Mule Spawn Egg}} +|{{cd|mule_spawn_egg}} +|- +|{{ItemLink|Ocelot Spawn Egg}} +|{{cd|ocelot_spawn_egg}} +|- +|{{ItemLink|Parrot Spawn Egg}} +|{{cd|parrot_spawn_egg}} +|- +|{{ItemLink|Pig Spawn Egg}} +|{{cd|pig_spawn_egg}} +|- +|{{ItemLink|Polar Bear Spawn Egg}} +|{{cd|polar_bear_spawn_egg}} +|- +|{{ItemLink|Rabbit Spawn Egg}} +|{{cd|rabbit_spawn_egg}} +|- +|{{ItemLink|Sheep Spawn Egg}} +|{{cd|sheep_spawn_egg}} +|- +|{{ItemLink|Shulker Spawn Egg}} +|{{cd|shulker_spawn_egg}} +|- +|{{ItemLink|Silverfish Spawn Egg}} +|{{cd|silverfish_spawn_egg}} +|- +|{{ItemLink|Skeleton Spawn Egg}} +|{{cd|skeleton_spawn_egg}} +|- +|{{ItemLink|Skeleton Horse Spawn Egg}} +|{{cd|skeleton_horse_spawn_egg}} +|- +|{{ItemLink|Slime Spawn Egg}} +|{{cd|slime_spawn_egg}} +|- +|{{ItemLink|Spider Spawn Egg}} +|{{cd|spider_spawn_egg}} +|- +|{{ItemLink|Squid Spawn Egg}} +|{{cd|squid_spawn_egg}} +|- +|{{ItemLink|Stray Spawn Egg}} +|{{cd|stray_spawn_egg}} +|- +|{{ItemLink|Vex Spawn Egg}} +|{{cd|vex_spawn_egg}} +|- +|{{ItemLink|Villager Spawn Egg}} +|{{cd|villager_spawn_egg}} +|- +|{{ItemLink|Vindicator Spawn Egg}} +|{{cd|vindicator_spawn_egg}} +|- +|{{ItemLink|Witch Spawn Egg}} +|{{cd|witch_spawn_egg}} +|- +|{{ItemLink|Wither Skeleton Spawn Egg}} +|{{cd|wither_skeleton_spawn_egg}} +|- +|{{ItemLink|Wolf Spawn Egg}} +|{{cd|wolf_spawn_egg}} +|- +|{{ItemLink|Zombie Spawn Egg}} +|{{cd|zombie_spawn_egg}} +|- +|{{ItemLink|Zombie Horse Spawn Egg}} +|{{cd|zombie_horse_spawn_egg}} +|- +|{{ItemLink|Zombified Piglin Spawn Egg|Zombie Pigman Spawn Egg}} +|{{cd|zombie_pigman_spawn_egg}} +|- +|{{ItemLink|Zombie Villager Spawn Egg}} +|{{cd|zombie_villager_spawn_egg}} +|- +|rowspan="22"|Separate and merge +|rowspan="11"|[[File:Flower Pot.png|16px]] [[Flower Pot]] +|rowspan="11"|{{cd|flower_pot}} +|[[File:Flower Pot.png|16px]] [[Flower Pot]] +|{{cd|flower_pot}} +|- +|[[File:Potted Poppy.png|16px]] [[Potted Poppy]] +|{{cd|potted_poppy}} +|- +|[[File:Potted Dandelion.png|16px]] [[Potted Dandelion]] +|{{cd|potted_dandelion}} +|- +|[[File:Potted Oak Sapling.png|16px]] [[Potted Oak Sapling]] +|{{cd|potted_oak_sapling}} +|- +|[[File:Potted Spruce Sapling.png|16px]] [[Potted Spruce Sapling]] +|{{cd|potted_spruce_sapling}} +|- +|[[File:Potted Birch Sapling.png|16px]] [[Potted Birch Sapling]] +|{{cd|potted_birch_sapling}} +|- +|[[File:Potted Jungle Sapling.png|16px]] [[Potted Jungle Sapling]] +|{{cd|potted_jungle_sapling}} +|- +|[[File:Potted Red Mushroom.png|16px]] [[Potted Red Mushroom]] +|{{cd|potted_red_mushroom}} +|- +|[[File:Potted Brown Mushroom.png|16px]] [[Potted Brown Mushroom]] +|{{cd|potted_brown_mushroom}} +|- +|[[File:Potted Cactus.png|16px]] [[Potted Cactus]] +|{{cd|potted_cactus}} +|- +|[[File:Potted Dead Bush.png|16px]] [[Potted Dead Bush]] +|{{cd|potted_dead_bush}} +|- +|rowspan="11"|{{ItemLink|Flower Pot}} (Item) +|rowspan="11"|{{cd|flower_pot}} +|[[File:Potted Fern.png|16px]] [[Potted Fern]] +|{{cd|potted_fern}} +|- +|[[File:Potted Acacia Sapling.png|16px]] [[Potted Acacia Sapling]] +|{{cd|potted_acacia_sapling}} +|- +|[[File:Potted Dark Oak Sapling.png|16px]] [[Potted Dark Oak Sapling]] +|{{cd|potted_dark_oak_sapling}} +|- +|[[File:Potted Blue Orchid.png|16px]] [[Potted Blue Orchid]] +|{{cd|potted_blue_orchid}} +|- +|[[File:Potted Allium.png|16px]] [[Potted Allium]] +|{{cd|potted_allium}} +|- +|[[File:Potted Azure Bluet.png|16px]] [[Potted Azure Bluet]] +|{{cd|potted_azure_bluet}} +|- +|[[File:Potted Red Tulip.png|16px]] [[Potted Red Tulip]] +|{{cd|potted_red_tulip}} +|- +|[[File:Potted Orange Tulip.png|16px]] [[Potted Orange Tulip]] +|{{cd|potted_orange_tulip}} +|- +|[[File:Potted White Tulip.png|16px]] [[Potted White Tulip]] +|{{cd|potted_white_tulip}} +|- +|[[File:Potted Pink Tulip.png|16px]] [[Potted Pink Tulip]] +|{{cd|potted_pink_tulip}} +|- +|[[File:Potted Oxeye Daisy.png|16px]] [[Potted Oxeye Daisy]] +|{{cd|potted_oxeye_daisy}} +|- +|rowspan="12"|Separate +|rowspan="6"|[[File:Skeleton Skull.png|16px]] [[Head]] +|rowspan="6"|{{cd|skull}} +|[[File:Skeleton Skull.png|16px]] [[Skeleton Skull]] +|{{cd|skeleton_skull}} +|- +|[[File:Skeleton Skull.png|16px]] [[Skeleton Wall Skull]] +|{{cd|skeleton_wall_skull}} +|- +|[[File:Wither Skeleton Skull.png|16px]] [[Wither Skeleton Skull]] +|{{cd|wither_skeleton_skull}} +|- +|[[File:Wither Skeleton Skull.png|16px]] [[Wither Skeleton Wall Skull]] +|{{cd|wither_skeleton_wall_skull}} +|- +|[[File:Zombie Head.png|16px]] [[Zombie Head]] +|{{cd|zombie_head}} +|- +|[[File:Zombie Head.png|16px]] [[Zombie Wall Head]] +|{{cd|zombie_wall_head}} +|- +|rowspan="6"|[[File:Skeleton Skull.png|16px]] [[Head]] (Item) +|rowspan="6"|{{cd|skull}} +|[[File:Player Head.png|16px]] [[Player Head]] +|{{cd|player_head}} +|- +|[[File:Player Head.png|16px]] [[Player Wall Head]] +|{{cd|player_wall_head}} +|- +|[[File:Creeper Head.png|16px]] [[Creeper Head]] +|{{cd|creeper_head}} +|- +|[[File:Creeper Head.png|16px]] [[Creeper Wall Head]] +|{{cd|creeper_wall_head}} +|- +|[[File:Dragon Head.png|16px]] [[Dragon Head]] +|{{cd|dragon_head}} +|- +|[[File:Dragon Head.png|16px]] [[Dragon Wall Head]] +|{{cd|dragon_wall_head}} +|- +|Rename +|{{ItemLink|Firework Rocket}} +|{{cd|fireworks}} +|{{ItemLink|Firework Rocket}} +|{{cd|firework_rocket}} +|- +|Rename +|{{ItemLink|Firework Star}} +|{{cd|firework_charge}} +|{{ItemLink|Firework Star}} +|{{cd|firework_star}} +|- +|Rename +|{{ItemLink|Nether Brick}} +|{{cd|netherbrick}} +|{{ItemLink|Nether Brick}} +|{{cd|nether_brick}} +|- +|rowspan="16"|Separate and merge +|rowspan="8"|[[File:White Banner.png|16px]] [[Banner]] +|rowspan="8"|{{cd|standing_banner}} +|[[File:White Banner.png|16px]] [[White Banner]] +|{{cd|white_banner}} +|- +|[[File:Orange Banner.png|16px]] [[Orange Banner]] +|{{cd|orange_banner}} +|- +|[[File:Magenta Banner.png|16px]] [[Magenta Banner]] +|{{cd|magenta_banner}} +|- +|[[File:Light Blue Banner.png|16px]] [[Light Blue Banner]] +|{{cd|light_blue_banner}} +|- +|[[File:Yellow Banner.png|16px]] [[Yellow Banner]] +|{{cd|yellow_banner}} +|- +|[[File:Lime Banner.png|16px]] [[Lime Banner]] +|{{cd|lime_banner}} +|- +|[[File:Pink Banner.png|16px]] [[Pink Banner]] +|{{cd|pink_banner}} +|- +|[[File:Gray Banner.png|16px]] [[Gray Banner]] +|{{cd|gray_banner}} +|- +|rowspan="8"|[[File:White Banner.png|16px]] [[Banner]] (Item) +|rowspan="8"|{{cd|banner}} +|[[File:Light Gray Banner.png|16px]] [[Light Gray Banner]] +|{{cd|light_gray_banner}} +|- +|[[File:Cyan Banner.png|16px]] [[Cyan Banner]] +|{{cd|cyan_banner}} +|- +|[[File:Purple Banner.png|16px]] [[Purple Banner]] +|{{cd|purple_banner}} +|- +|[[File:Blue Banner.png|16px]] [[Blue Banner]] +|{{cd|blue_banner}} +|- +|[[File:Brown Banner.png|16px]] [[Brown Banner]] +|{{cd|brown_banner}} +|- +|[[File:Green Banner.png|16px]] [[Green Banner]] +|{{cd|green_banner}} +|- +|[[File:Red Banner.png|16px]] [[Red Banner]] +|{{cd|red_banner}} +|- +|[[File:Black Banner.png|16px]] [[Black Banner]] +|{{cd|black_banner}} +|- +|rowspan="16"|Separate +|rowspan="16"|[[File:White Wall Banner.png|16px]] [[Wall Banner]] +|rowspan="16"|{{cd|wall_banner}} +|[[File:White Wall Banner.png|16px]] [[White Wall Banner]] +|{{cd|white_wall_banner}} +|- +|[[File:Orange Wall Banner.png|16px]] [[Orange Wall Banner]] +|{{cd|orange_wall_banner}} +|- +|[[File:Magenta Wall Banner.png|16px]] [[Magenta Wall Banner]] +|{{cd|magenta_wall_banner}} +|- +|[[File:Light Blue Wall Banner.png|16px]] [[Light Blue Wall Banner]] +|{{cd|light_blue_wall_banner}} +|- +|[[File:Yellow Wall Banner.png|16px]] [[Yellow Wall Banner]] +|{{cd|yellow_wall_banner}} +|- +|[[File:Lime Wall Banner.png|16px]] [[Lime Wall Banner]] +|{{cd|lime_wall_banner}} +|- +|[[File:Pink Wall Banner.png|16px]] [[Pink Wall Banner]] +|{{cd|pink_wall_banner}} +|- +|[[File:Gray Wall Banner.png|16px]] [[Gray Wall Banner]] +|{{cd|gray_wall_banner}} +|- +|[[File:Light Gray Wall Banner.png|16px]] [[Light Gray Wall Banner]] +|{{cd|light_gray_wall_banner}} +|- +|[[File:Cyan Wall Banner.png|16px]] [[Cyan Wall Banner]] +|{{cd|cyan_wall_banner}} +|- +|[[File:Purple Wall Banner.png|16px]] [[Purple Wall Banner]] +|{{cd|purple_wall_banner}} +|- +|[[File:Blue Wall Banner.png|16px]] [[Blue Wall Banner]] +|{{cd|blue_wall_banner}} +|- +|[[File:Brown Wall Banner.png|16px]] [[Brown Wall Banner]] +|{{cd|brown_wall_banner}} +|- +|[[File:Green Wall Banner.png|16px]] [[Green Wall Banner]] +|{{cd|green_wall_banner}} +|- +|[[File:Red Wall Banner.png|16px]] [[Red Wall Banner]] +|{{cd|red_wall_banner}} +|- +|[[File:Black Wall Banner.png|16px]] [[Black Wall Banner]] +|{{cd|black_wall_banner}} +|- +|Rename +|{{ItemLink|Popped Chorus Fruit}} +|{{cd|chorus_fruit_popped}} +|{{ItemLink|Popped Chorus Fruit}} +|{{cd|popped_chorus_fruit}} +|- +|Rename +|{{ItemLink|Music Disc 13}} +|{{cd|record_13}} +|{{ItemLink|Music Disc 13}} +|{{cd|music_disc_13}} +|- +|Rename +|{{ItemLink|Music Disc Cat}} +|{{cd|record_cat}} +|{{ItemLink|Music Disc Cat}} +|{{cd|music_disc_cat}} +|- +|Rename +|{{ItemLink|Music Disc Blocks}} +|{{cd|record_blocks}} +|{{ItemLink|Music Disc Blocks}} +|{{cd|music_disc_blocks}} +|- +|Rename +|{{ItemLink|Music Disc Chirp}} +|{{cd|record_chirp}} +|{{ItemLink|Music Disc Chirp}} +|{{cd|music_disc_chirp}} +|- +|Rename +|{{ItemLink|Music Disc Far}} +|{{cd|record_far}} +|{{ItemLink|Music Disc Far}} +|{{cd|music_disc_far}} +|- +|Rename +|{{ItemLink|Music Disc Mall}} +|{{cd|record_mall}} +|{{ItemLink|Music Disc Mall}} +|{{cd|music_disc_mall}} +|- +|Rename +|{{ItemLink|Music Disc Mellohi}} +|{{cd|record_mellohi}} +|{{ItemLink|Music Disc Mellohi}} +|{{cd|music_disc_mellohi}} +|- +|Rename +|{{ItemLink|Music Disc Stal}} +|{{cd|record_stal}} +|{{ItemLink|Music Disc Stal}} +|{{cd|music_disc_stal}} +|- +|Rename +|{{ItemLink|Music Disc Strad}} +|{{cd|record_strad}} +|{{ItemLink|Music Disc Strad}} +|{{cd|music_disc_strad}} +|- +|Rename +|{{ItemLink|Music Disc Ward}} +|{{cd|record_ward}} +|{{ItemLink|Music Disc Ward}} +|{{cd|music_disc_ward}} +|- +|Rename +|{{ItemLink|Music Disc 11}} +|{{cd|record_11}} +|{{ItemLink|Music Disc 11}} +|{{cd|music_disc_11}} +|- +|Rename +|{{ItemLink|Music Disc Wait}} +|{{cd|record_wait}} +|{{ItemLink|Music Disc Wait}} +|{{cd|music_disc_wait}} +|} + +{{notelist|ids note}} + +== Entity IDs == +[[Entities]] that change their ID in any way also affect their statistics. +{|class="wikitable" +!Entity +![[Java Edition 1.12.2|1.12.2]] +![[Java Edition 1.13|1.13]] +|- +|{{EntityLink|Experience Orb}} +|{{cd|xp_orb}} +|{{cd|experience_orb}} +|- +|{{ItemLink|Bottle o' Enchanting}} +|{{cd|xp_bottle}} +|{{cd|experience_bottle}} +|- +|{{ItemLink|Eye of Ender}} +|{{cd|eye_of_ender_signal}} +|{{cd|eye_of_ender}} +|- +|[[File:End Crystal.png|16px]] [[End Crystal]] +|{{cd|ender_crystal}} +|{{cd|end_crystal}} +|- +|{{ItemLink|Firework Rocket}} +|{{cd|fireworks_rocket}} +|{{cd|firework_rocket}} +|- +|[[File:Minecart with Command Block.png|16px]] [[Minecart with Command Block]] +|{{cd|commandblock_minecart}} +|{{cd|command_block_minecart}} +|- +|[[File:Snow Golem.png|16px]] [[Snow Golem]] +|{{cd|snowman}} +|{{cd|snow_golem}} +|- +|[[File:Iron Golem.png|16px]] [[Iron Golem]] +|{{cd|villager_golem}} +|{{cd|iron_golem}} +|- +|[[File:Evoker Fangs.png|16px]] [[Evoker Fangs]] +|{{cd|evocation_fangs}} +|{{cd|evoker_fangs}} +|- +|[[File:Evoker.png|16px]] [[Evoker]] +|{{cd|evocation_illager}} +|{{cd|evoker}} +|- +|[[File:Vindicator.png|16px]] [[Vindicator]] +|{{cd|vindication_illager}} +|{{cd|vindicator}} +|- +|[[File:Illusioner.png|16px]] [[Illusioner]] +|{{cd|illusion_illager}} +|{{cd|illusioner}} +|} + +== Biome IDs == +{|class="wikitable stikitable" +![[Biome]] +![[Java Edition 1.12.2|1.12.2]] +![[Java Edition 1.13|1.13]] +|- +|{{BiomeLink|Windswept Hills|Mountains}} +|{{cd|extreme_hills}} +|{{cd|mountains}} +|- +|{{BiomeLink|Swamp}} +|{{cd|swampland}} +|{{cd|swamp}} +|- +|{{BiomeLink|Nether Wastes|Nether}} +|{{cd|hell}} +|{{cd|nether}} +|- +|{{BiomeLink|The End}} +|{{cd|sky}} +|{{cd|the_end}} +|- +|{{BiomeLink|Snowy Plains|Snowy Tundra}} +|{{cd|ice_flats}} +|{{cd|snowy_tundra}} +|- +|{{BiomeLink|Snowy Mountains}} +|{{cd|ice_mountains}} +|{{cd|snowy_mountains}} +|- +|{{BiomeLink|Mushroom Fields}} +|{{cd|mushroom_island}} +|{{cd|mushroom_fields}} +|- +|{{BiomeLink|Mushroom Field Shore}} +|{{cd|mushroom_island_shore}} +|{{cd|mushroom_field_shore}} +|- +|{{BiomeLink|Beach}} +|{{cd|beaches}} +|{{cd|beach}} +|- +|{{BiomeLink|Wooded Hills}} +|{{cd|forest_hills}} +|{{cd|wooded_hills}} +|- +|{{BiomeLink|Mountain Edge}} +|{{cd|smaller_extreme_hills}} +|{{cd|mountain_edge}} +|- +|{{BiomeLink|Stony Shore|Stone Shore}} +|{{cd|stone_beach}} +|{{cd|stone_shore}} +|- +|{{BiomeLink|Snowy Beach}} +|{{cd|cold_beach}} +|{{cd|snowy_beach}} +|- +|{{BiomeLink|Dark Forest}} +|{{cd|roofed_forest}} +|{{cd|dark_forest}} +|- +|{{BiomeLink|Snowy Taiga}} +|{{cd|taiga_cold}} +|{{cd|snowy_taiga}} +|- +|{{BiomeLink|Snowy Taiga Hills}} +|{{cd|taiga_cold_hills}} +|{{cd|snowy_taiga_hills}} +|- +|{{BiomeLink|Old Growth Pine Taiga|Giant Tree Taiga}} +|{{cd|redwood_taiga}} +|{{cd|giant_tree_taiga}} +|- +|{{BiomeLink|Giant Tree Taiga Hills}} +|{{cd|redwood_taiga_hills}} +|{{cd|giant_tree_taiga_hills}} +|- +|{{BiomeLink|Windswept forest|Wooded Mountains}} +|{{cd|extreme_hills_with_trees}} +|{{cd|wooded_mountains}} +|- +|{{BiomeLink|Savanna Plateau}} +|{{cd|savanna_rock}} +|{{cd|savanna_plateau}} +|- +|{{BiomeLink|Badlands}} +|{{cd|mesa}} +|{{cd|badlands}} +|- +|{{BiomeLink|Wooded Badlands|Wooded Badlands Plateau}} +|{{cd|mesa_rock}} +|{{cd|wooded_badlands_plateau}} +|- +|{{BiomeLink|Badlands Plateau}} +|{{cd|mesa_clear_rock}} +|{{cd|badlands_plateau}} +|- +|{{BiomeLink|The Void}} +|{{cd|void}} +|{{cd|the_void}} +|- +|{{BiomeLink|Sunflower Plains}} +|{{cd|mutated_plains}} +|{{cd|sunflower_plains}} +|- +|{{BiomeLink|Desert Lakes}} +|{{cd|mutated_desert}} +|{{cd|desert_lakes}} +|- +|{{BiomeLink|Windswept Gravelly Hills|Gravelly Mountains}} +|{{cd|mutated_extreme_hills}} +|{{cd|gravelly_mountains}} +|- +|{{BiomeLink|Flower Forest}} +|{{cd|mutated_forest}} +|{{cd|flower_forest}} +|- +|{{BiomeLink|Taiga Mountains}} +|{{cd|mutated_taiga}} +|{{cd|taiga_mountains}} +|- +|{{BiomeLink|Swamp Hills}} +|{{cd|mutated_swampland}} +|{{cd|swamp_hills}} +|- +|{{BiomeLink|Ice Spikes}} +|{{cd|mutated_ice_flats}} +|{{cd|ice_spikes}} +|- +|{{BiomeLink|Modified Jungle}} +|{{cd|mutated_jungle}} +|{{cd|modified_jungle}} +|- +|{{BiomeLink|Modified Jungle Edge}} +|{{cd|mutated_jungle_edge}} +|{{cd|modified_jungle_edge}} +|- +|{{BiomeLink|Old Growth Birch Forest|Tall Birch Forest}} +|{{cd|mutated_birch_forest}} +|{{cd|tall_birch_forest}} +|- +|{{BiomeLink|Tall Birch Hills}} +|{{cd|mutated_birch_forest_hills}} +|{{cd|tall_birch_hills}} +|- +|{{BiomeLink|Dark Forest Hills}} +|{{cd|mutated_roofed_forest}} +|{{cd|dark_forest_hills}} +|- +|{{BiomeLink|Snowy Taiga Mountains}} +|{{cd|mutated_taiga_cold}} +|{{cd|snowy_taiga_mountains}} +|- +|{{BiomeLink|Old Growth Spruce Taiga|Giant Spruce Taiga}} +|{{cd|mutated_redwood_taiga}} +|{{cd|giant_spruce_taiga}} +|- +|{{BiomeLink|Giant Spruce Taiga Hills}} +|{{cd|mutated_redwood_taiga_hills}} +|{{cd|giant_spruce_taiga_hills}} +|- +|{{BiomeLink|id=modified-gravelly-mountains|Gravelly Mountains+}} +|{{cd|mutated_extreme_hills_with_trees}} +|{{cd|modified_gravelly_mountains}} +|- +|{{BiomeLink|Windswept Savanna|Shattered Savanna}} +|{{cd|mutated_savanna}} +|{{cd|shattered_savanna}} +|- +|{{BiomeLink|Shattered Savanna Plateau}} +|{{cd|mutated_savanna_rock}} +|{{cd|shattered_savanna_plateau}} +|- +|{{BiomeLink|Eroded Badlands}} +|{{cd|mutated_mesa}} +|{{cd|eroded_badlands}} +|- +|{{BiomeLink|Modified Wooded Badlands Plateau}} +|{{cd|mutated_mesa_rock}} +|{{cd|modified_wooded_badlands_plateau}} +|- +|{{BiomeLink|Modified Badlands Plateau}} +|{{cd|mutated_mesa_clear_rock}} +|{{cd|modified_badlands_plateau}} +|} + +== Particle IDs == +[[Particle]] IDs started using resource locations ({{cd|minecraft:}} in front) as well as changed the ID. +{|class="wikitable stikitable" +!Change +![[Java Edition 1.12.2|1.12.2]] +![[Java Edition 1.13|1.13]] +|- +|Rename +|{{cd|angryVillager}} +|{{cd|angry_villager}} +|- +|rowspan="2"|Merge +|{{cd|blockdust}} +|rowspan="2"|{{cd|block}} +|- +|{{cd|blockcrack}} +|- +|Rename +|{{cd|damageIndicator}} +|{{cd|damage_indicator}} +|- +|Remove +|{{cd|depthsuspend}} +|— +|- +|Rename +|{{cd|dragonbreath}} +|{{cd|dragon_breath}} +|- +|Rename +|{{cd|dripLava}} +|{{cd|dripping_lava}} +|- +|Rename +|{{cd|dripWater}} +|{{cd|dripping_water}} +|- +|Rename +|{{cd|droplet}} +|{{cd|rain}} +|- +|Rename +|{{cd|enchantmenttable}} +|{{cd|enchant}} +|- +|Rename +|{{cd|endRod}} +|{{cd|end_rod}} +|- +|rowspan="2"|Merge +|{{cd|explode}} +|rowspan="2"|{{cd|poof}} +|- +|{{cd|snowshovel}} +|- +|Rename +|{{cd|fallingdust}} +|{{cd|falling_dust}} +|- +|Rename +|{{cd|fireworksSpark}} +|{{cd|firework}} +|- +|Remove +|{{cd|footstep}} +|— +|- +|Rename +|{{cd|happyVillager}} +|{{cd|happy_villager}} +|- +|Rename +|{{cd|hugeexplosion}} +|{{cd|explosion_emitter}} +|- +|Rename +|{{cd|iconcrack}} +|{{cd|item}} +|- +|Rename +|{{cd|instantSpell}} +|{{cd|instant_effect}} +|- +|Rename +|{{cd|largeexplosion}} +|{{cd|explosion}} +|- +|Rename +|{{cd|largesmoke}} +|{{cd|large_smoke}} +|- +|Rename +|{{cd|magicCrit}} +|{{cd|enchanted_hit}} +|- +|Rename +|{{cd|mobappearance}} +|{{cd|elder_guardian}} +|- +|Rename +|{{cd|mobSpell}} +|{{cd|entity_effect}} +|- +|Rename +|{{cd|mobSpellAmbient}} +|{{cd|ambient_entity_effect}} +|- +|Rename +|{{cd|reddust}} +|{{cd|dust}} +|- +|Rename +|{{cd|slime}} +|{{cd|item_slime}} +|- +|Rename +|{{cd|snowballpoof}} +|{{cd|item_snowball}} +|- +|Rename +|{{cd|spell}} +|{{cd|effect}} +|- +|Rename +|{{cd|suspended}} +|{{cd|underwater}} +|- +|Rename +|{{cd|sweepAttack}} +|{{cd|sweep_attack}} +|- +|Remove +|{{cd|take}} +|— +|- +|Rename +|{{cd|totem}} +|{{cd|totem_of_undying}} +|- +|Rename +|{{cd|townaura}} +|{{cd|mycelium}} +|- +|Rename +|{{cd|wake}} +|{{cd|fishing}} +|- +|Rename +|{{cd|witchMagic}} +|{{cd|witch}} +|} + +== Sound events == +Some [[Sounds.json#Sound events|sound events]] were modified. + +{|class="wikitable stikitable" +![[Java Edition 1.12.2|1.12.2]] +![[Java Edition 1.13|1.13]] +|- +|{{cd|block.cloth.break}} +|{{cd|block.wool.break}} +|- +|{{cd|block.cloth.fall}} +|{{cd|block.wool.fall}} +|- +|{{cd|block.cloth.hit}} +|{{cd|block.wool.hit}} +|- +|{{cd|block.cloth.place}} +|{{cd|block.wool.place}} +|- +|{{cd|block.cloth.step}} +|{{cd|block.wool.step}} +|- +|{{cd|block.enderchest.close}} +|{{cd|block.ender_chest.close}} +|- +|{{cd|block.enderchest.open}} +|{{cd|block.ender_chest.open}} +|- +|{{cd|block.metal_pressureplate.click_off}} +|{{cd|block.metal_pressure_plate.click_off}} +|- +|{{cd|block.metal_pressureplate.click_on}} +|{{cd|block.metal_pressure_plate.click_on}} +|- +|{{cd|block.note.basedrum}} +|{{cd|block.note_block.basedrum}} +|- +|{{cd|block.note.bass}} +|{{cd|block.note_block.bass}} +|- +|{{cd|block.note.bell}} +|{{cd|block.note_block.bell}} +|- +|{{cd|block.note.chime}} +|{{cd|block.note_block.chime}} +|- +|{{cd|block.note.flute}} +|{{cd|block.note_block.flute}} +|- +|{{cd|block.note.guitar}} +|{{cd|block.note_block.guitar}} +|- +|{{cd|block.note.harp}} +|{{cd|block.note_block.harp}} +|- +|{{cd|block.note.hat}} +|{{cd|block.note_block.hat}} +|- +|{{cd|block.note.pling}} +|{{cd|block.note_block.pling}} +|- +|{{cd|block.note.snare}} +|{{cd|block.note_block.snare}} +|- +|{{cd|block.note.xylophone}} +|{{cd|block.note_block.xylophone}} +|- +|{{cd|block.slime.break}} +|{{cd|block.slime_block.break}} +|- +|{{cd|block.slime.fall}} +|{{cd|block.slime_block.fall}} +|- +|{{cd|block.slime.hit}} +|{{cd|block.slime_block.hit}} +|- +|{{cd|block.slime.place}} +|{{cd|block.slime_block.place}} +|- +|{{cd|block.slime.step}} +|{{cd|block.slime_block.step}} +|- +|{{cd|block.stone_pressureplate.click_off}} +|{{cd|block.stone_pressure_plate.click_off}} +|- +|{{cd|block.stone_pressureplate.click_on}} +|{{cd|block.stone_pressure_plate.click_on}} +|- +|{{cd|block.waterlily.place}} +|{{cd|block.lily_pad.place}} +|- +|{{cd|block.wood_pressureplate.click_off}} +|{{cd|block.wooden_pressure_plate.click_off}} +|- +|{{cd|block.wood_button.click_on}} +|{{cd|block.wooden_button.click_on}} +|- +|{{cd|block.wood_button.click_off}} +|{{cd|block.wooden_button.click_off}} +|- +|{{cd|block.wood_pressureplate.click_on}} +|{{cd|block.wooden_pressure_plate.click_on}} +|- +|{{cd|entity.armorstand.break}} +|{{cd|entity.armor_stand.break}} +|- +|{{cd|entity.armorstand.fall}} +|{{cd|entity.armor_stand.fall}} +|- +|{{cd|entity.armorstand.hit}} +|{{cd|entity.armor_stand.hit}} +|- +|{{cd|entity.armorstand.place}} +|{{cd|entity.armor_stand.place}} +|- +|{{cd|entity.bobber.retrieve}} +|{{cd|entity.fishing_bobber.retrieve}} +|- +|{{cd|entity.bobber.splash}} +|{{cd|entity.fishing_bobber.splash}} +|- +|{{cd|entity.bobber.throw}} +|{{cd|entity.fishing_bobber.throw}} +|- +|{{cd|entity.enderdragon.ambient}} +|{{cd|entity.ender_dragon.ambient}} +|- +|{{cd|entity.enderdragon.death}} +|{{cd|entity.ender_dragon.death}} +|- +|{{cd|entity.enderdragon.flap}} +|{{cd|entity.ender_dragon.flap}} +|- +|{{cd|entity.enderdragon.growl}} +|{{cd|entity.ender_dragon.growl}} +|- +|{{cd|entity.enderdragon.hurt}} +|{{cd|entity.ender_dragon.hurt}} +|- +|{{cd|entity.enderdragon.shoot}} +|{{cd|entity.ender_dragon.shoot}} +|- +|{{cd|entity.enderdragon_fireball.explode}} +|{{cd|entity.dragon_fireball.explode}} +|- +|{{cd|entity.endereye.death}} +|{{cd|entity.ender_eye.death}} +|- +|{{cd|entity.endereye.launch}} +|{{cd|entity.ender_eye.launch}} +|- +|{{cd|entity.endermen.ambient}} +|{{cd|entity.enderman.ambient}} +|- +|{{cd|entity.endermen.death}} +|{{cd|entity.enderman.death}} +|- +|{{cd|entity.endermen.hurt}} +|{{cd|entity.enderman.hurt}} +|- +|{{cd|entity.endermen.scream}} +|{{cd|entity.enderman.scream}} +|- +|{{cd|entity.endermen.stare}} +|{{cd|entity.enderman.stare}} +|- +|{{cd|entity.endermen.teleport}} +|{{cd|entity.enderman.teleport}} +|- +|{{cd|entity.enderpearl.throw}} +|{{cd|entity.ender_pearl.throw}} +|- +|{{cd|entity.evocation_fangs.attack}} +|{{cd|entity.evoker_fangs.attack}} +|- +|{{cd|entity.evocation_illager.ambient}} +|{{cd|entity.evoker.ambient}} +|- +|{{cd|entity.evocation_illager.cast_spell}} +|{{cd|entity.evoker.cast_spell}} +|- +|{{cd|entity.evocation_illager.death}} +|{{cd|entity.evoker.death}} +|- +|{{cd|entity.evocation_illager.hurt}} +|{{cd|entity.evoker.hurt}} +|- +|{{cd|entity.evocation_illager.prepare_attack}} +|{{cd|entity.evoker.prepare_attack}} +|- +|{{cd|entity.evocation_illager.prepare_summon}} +|{{cd|entity.evoker.prepare_summon}} +|- +|{{cd|entity.evocation_illager.prepare_wololo}} +|{{cd|entity.evoker.prepare_wololo}} +|- +|{{cd|entity.firework.blast}} +|{{cd|entity.firework_rocket.blast}} +|- +|{{cd|entity.firework.blast_far}} +|{{cd|entity.firework_rocket.blast_far}} +|- +|{{cd|entity.firework.large_blast}} +|{{cd|entity.firework_rocket.large_blast}} +|- +|{{cd|entity.firework.large_blast_far}} +|{{cd|entity.firework_rocket.large_blast_far}} +|- +|{{cd|entity.firework.launch}} +|{{cd|entity.firework_rocket.launch}} +|- +|{{cd|entity.firework.shoot}} +|{{cd|entity.firework_rocket.shoot}} +|- +|{{cd|entity.firework.twinkle}} +|{{cd|entity.firework_rocket.twinkle}} +|- +|{{cd|entity.firework.twinkle_far}} +|{{cd|entity.firework_rocket.twinkle_far}} +|- +|{{cd|entity.illusion_illager.ambient}} +|{{cd|entity.illusioner.ambient}} +|- +|{{cd|entity.illusion_illager.cast_spell}} +|{{cd|entity.illusioner.cast_spell}} +|- +|{{cd|entity.illusion_illager.death}} +|{{cd|entity.illusioner.death}} +|- +|{{cd|entity.illusion_illager.hurt}} +|{{cd|entity.illusioner.hurt}} +|- +|{{cd|entity.illusion_illager.mirror_move}} +|{{cd|entity.illusioner.mirror_move}} +|- +|{{cd|entity.illusion_illager.prepare_blindness}} +|{{cd|entity.illusioner.prepare_blindness}} +|- +|{{cd|entity.illusion_illager.prepare_mirror}} +|{{cd|entity.illusioner.prepare_mirror}} +|- +|{{cd|entity.irongolem.attack}} +|{{cd|entity.iron_golem.attack}} +|- +|{{cd|entity.irongolem.death}} +|{{cd|entity.iron_golem.death}} +|- +|{{cd|entity.irongolem.hurt}} +|{{cd|entity.iron_golem.hurt}} +|- +|{{cd|entity.irongolem.step}} +|{{cd|entity.iron_golem.step}} +|- +|{{cd|entity.itemframe.add_item}} +|{{cd|entity.item_frame.add_item}} +|- +|{{cd|entity.itemframe.break}} +|{{cd|entity.item_frame.break}} +|- +|{{cd|entity.itemframe.place}} +|{{cd|entity.item_frame.place}} +|- +|{{cd|entity.itemframe.remove_item}} +|{{cd|entity.item_frame.remove_item}} +|- +|{{cd|entity.itemframe.rotate_item}} +|{{cd|entity.item_frame.rotate_item}} +|- +|{{cd|entity.leashknot.break}} +|{{cd|entity.leash_knot.break}} +|- +|{{cd|entity.leashknot.place}} +|{{cd|entity.leash_knot.place}} +|- +|{{cd|entity.lightning.impact}} +|{{cd|entity.lightning_bolt.impact}} +|- +|{{cd|entity.lightning.thunder}} +|{{cd|entity.lightning_bolt.thunder}} +|- +|{{cd|entity.lingeringpotion.throw}} +|{{cd|entity.lingering_potion.throw}} +|- +|{{cd|entity.magmacube.death}} +|{{cd|entity.magma_cube.death}} +|- +|{{cd|entity.magmacube.hurt}} +|{{cd|entity.magma_cube.hurt}} +|- +|{{cd|entity.magmacube.jump}} +|{{cd|entity.magma_cube.jump}} +|- +|{{cd|entity.magmacube.squish}} +|{{cd|entity.magma_cube.squish}} +|- +|{{cd|entity.parrot.imitate.enderdragon}} +|{{cd|entity.parrot.imitate.ender_dragon}} +|- +|{{cd|entity.parrot.imitate.evocation_illager}} +|{{cd|entity.parrot.imitate.evoker}} +|- +|{{cd|entity.parrot.imitate.illusion_illager}} +|{{cd|entity.parrot.imitate.illusioner}} +|- +|{{cd|entity.parrot.imitate.magmacube}} +|{{cd|entity.parrot.imitate.magma_cube}} +|- +|{{cd|entity.parrot.imitate.vindication_illager}} +|{{cd|entity.parrot.imitate.vindicator}} +|- +|{{cd|entity.player.splash.highspeed}} +|{{cd|entity.player.splash.high_speed}} +|- +|{{cd|entity.polar_bear.baby_ambient}} +|{{cd|entity.polar_bear.ambient_baby}} +|- +|{{cd|entity.small_magmacube.death}} +|{{cd|entity.magma_cube.death_small}} +|- +|{{cd|entity.small_magmacube.hurt}} +|{{cd|entity.magma_cube.hurt_small}} +|- +|{{cd|entity.small_magmacube.squish}} +|{{cd|entity.magma_cube.squish_small}} +|- +|{{cd|entity.small_slime.death}} +|{{cd|entity.slime.death_small}} +|- +|{{cd|entity.small_slime.hurt}} +|{{cd|entity.slime.hurt_small}} +|- +|{{cd|entity.small_slime.jump}} +|{{cd|entity.slime.jump_small}} +|- +|{{cd|entity.small_slime.squish}} +|{{cd|entity.slime.squish_small}} +|- +|{{cd|entity.snowman.ambient}} +|{{cd|entity.snow_golem.ambient}} +|- +|{{cd|entity.snowman.death}} +|{{cd|entity.snow_golem.death}} +|- +|{{cd|entity.snowman.hurt}} +|{{cd|entity.snow_golem.hurt}} +|- +|{{cd|entity.snowman.shoot}} +|{{cd|entity.snow_golem.shoot}} +|- +|{{cd|entity.vindication_illager.ambient}} +|{{cd|entity.vindicator.ambient}} +|- +|{{cd|entity.vindication_illager.death}} +|{{cd|entity.vindicator.death}} +|- +|{{cd|entity.vindication_illager.hurt}} +|{{cd|entity.vindicator.hurt}} +|- +|{{cd|entity.zombie.attack_door_wood}} +|{{cd|entity.zombie.attack_wooden_door}} +|- +|{{cd|entity.zombie.break_door_wood}} +|{{cd|entity.zombie.break_wooden_door}} +|- +|{{cd|entity.zombie_pig.ambient}} +|{{cd|entity.zombie_pigman.ambient}} +|- +|{{cd|entity.zombie_pig.angry}} +|{{cd|entity.zombie_pigman.angry}} +|- +|{{cd|entity.zombie_pig.death}} +|{{cd|entity.zombie_pigman.death}} +|- +|{{cd|entity.zombie_pig.hurt}} +|{{cd|entity.zombie_pigman.hurt}} +|- +|{{cd|record.11}} +|{{cd|music_disc.11}} +|- +|{{cd|record.13}} +|{{cd|music_disc.13}} +|- +|{{cd|record.blocks}} +|{{cd|music_disc.blocks}} +|- +|{{cd|record.cat}} +|{{cd|music_disc.cat}} +|- +|{{cd|record.chirp}} +|{{cd|music_disc.chirp}} +|- +|{{cd|record.far}} +|{{cd|music_disc.far}} +|- +|{{cd|record.mall}} +|{{cd|music_disc.mall}} +|- +|{{cd|record.mellohi}} +|{{cd|music_disc.mellohi}} +|- +|{{cd|record.stal}} +|{{cd|music_disc.stal}} +|- +|{{cd|record.strad}} +|{{cd|music_disc.strad}} +|- +|{{cd|record.wait}} +|{{cd|music_disc.wait}} +|- +|{{cd|record.ward}} +|{{cd|music_disc.ward}} +|} + +== Block states == +Some [[block state]]s were modified. + +{|class="wikitable stikitable" +!colspan="2"|[[Java Edition 1.12.2|1.12.2]] +!colspan="2"|[[Java Edition 1.13|1.13]] +|- +!Block +!States +!Block +!States +|- +|[[File:Stone.png|16px]] [[Stone]] +|{{cd|variant}} +|[[File:Stone.png|16px]] [[Stone]] +|— +|- +|rowspan="2"|[[File:Dirt.png|16px]] [[Dirt]] +|rowspan="2"|{{cd|variant}}
{{cd|snowy}} +|[[File:Dirt.png|16px]] [[Dirt]] +[[File:Coarse Dirt.png|16px]] [[Coarse Dirt]] +|— +|- +|[[File:Podzol.png|16px]] [[Podzol]] +|{{cd|snowy}} +|- +|[[File:Oak Planks.png|16px]] [[Planks]] +|{{cd|variant}} +|[[File:Oak Planks.png|16px]] [[Planks]] +|— +|- +|[[File:Oak Sapling.png|16px]] [[Sapling]] +|{{cd|type}} +|[[File:Oak Sapling.png|16px]] [[Sapling]] +|— +|- +|[[File:Sand.png|16px]] [[Sand]] +|{{cd|variant}} +|[[File:Sand.png|16px]] [[Sand]] +|— +|- +|[[File:Oak Log (UD) JE5 BE3.png|16px]] [[Log]] +|rowspan="2"|{{cd|variant}}
{{cd|axis=none|x|y|z}} +|rowspan="2"|[[File:Oak Log (UD) JE5 BE3.png|16px]] [[Log]] +[[File:Oak Wood.png|16px]] [[Wood]] +|rowspan="2"|{{cd|axis=x|y|z}} +|- +|[[File:Acacia Log.png|16px]] [[Log]] (2) +|- +|[[File:Oak Leaves.png|16px]] [[Leaves]] +|rowspan="2"|{{cd|variant}}
{{cd|decayable}}
{{cd|check_decay}} +|rowspan="2"|[[File:Oak Leaves.png|16px]] [[Leaves]] +|rowspan="2"|{{cd|distance=1-7}}
{{cd|persistent=true|false}} +|- +|[[File:Acacia Leaves.png|16px]] [[Leaves]] (2) +|- +|[[File:Sponge.png|16px]] [[Sponge]] +|{{cd|wet}} +|[[File:Sponge.png|16px]] [[Sponge]] +|— +|- +|[[File:Sandstone.png|16px]] [[Sandstone]] +|{{cd|type}} +|[[File:Sandstone.png|16px]] [[Sandstone]] +|— +|- +|[[File:Note Block.png|16px]] [[Note Block]] +|— +|[[File:Note Block.png|16px]] [[Note Block]] +|{{cd|note=0-24}}
{{cd|powered=true|false}}
{{cd|instrument=xylophone|chime|guitar|bell|flute|bass|hat|snare|basedrum|harp}} +|- +|[[File:Grass.png|16px]] [[Short Grass]] +|{{cd|type}} +|[[File:Grass.png|16px]] [[Short Grass]] +|— +|- +|[[File:Piston.png|16px]] [[Moving Piston]] +|{{cd|extended}} +|[[File:Piston.png|16px]] [[Moving Piston]] +|{{cd|type=normal|sticky}} +|- +|[[File:White Wool.png|16px]] [[Wool]] +|{{cd|color}} +|[[File:White Wool.png|16px]] [[Wool]] +|— +|- +|[[File:Dandelion.png|16px]] [[Dandelion]] +|rowspan="2"|{{cd|type}} +|rowspan="2"|[[File:Poppy.png|16px]] [[Flower]] +|rowspan="2"|— +|- +|[[File:Poppy.png|16px]] [[Flower]] +|- +|[[File:Oak Planks.png|16px]] [[slab|Double Wooden Slab]] +|{{cd|variant}} +|rowspan="2"|[[File:Oak Slab.png|16px]] [[Wooden Slab]] +|rowspan="2"|{{cd|type=top|bottom|double}} +|- +|[[File:Oak Slab.png|16px]] [[Wooden Slab]] +|{{cd|variant}}
{{cd|half}} +|- +|[[File:Double Smooth Stone Slab.png|16px]] [[Double Stone Slab]] +|{{cd|variant}}
{{cd|seamless}} +|rowspan="2"|[[File:Smooth Stone Slab.png|16px]] [[Stone Slab]] +|rowspan="2"|{{cd|type=top|bottom|double}} +|- +|[[File:Smooth Stone Slab.png|16px]] [[Stone Slab]] +|{{cd|variant}}
{{cd|half}} +|- +|[[File:Red Sandstone.png|16px]] [[Double Red Sandstone Slab]] +|{{cd|variant}}
{{cd|seamless}} +|rowspan="2"|[[File:Red Sandstone Slab.png|16px]] [[Red Sandstone Slab]] +|rowspan="2"|{{cd|type=top|bottom|double}} +|- +|[[File:Red Sandstone Slab.png|16px]] [[Red Sandstone Slab]] +|{{cd|variant}}
{{cd|half}} +|- +|[[File:Purpur Block.png|16px]] [[Double Purpur Slab]] +|{{cd|variant}} +|rowspan="2"|[[File:Purpur Slab.png|16px]] [[Purpur Slab]] +|rowspan="2"|{{cd|type=top|bottom|double}} +|- +|[[File:Purpur Slab.png|16px]] [[Purpur Slab]] +|{{cd|variant}}
{{cd|half}} +|- +|[[File:TNT.png|16px]] [[TNT]] +|{{cd|explode}} +|[[File:TNT.png|16px]] [[TNT]] +|— +|- +|rowspan="2"|[[File:Torch.png|16px]] [[Torch]] +|rowspan="2"|{{cd|facing=north|east|south|west|up}} +|[[File:Wall Torch.png|16px]] [[Wall Torch]] +|{{cd|facing=north|south|east|west}} +|- +|[[File:Torch.png|16px]] [[Torch]] +|— +|- +|[[File:Chest.png|16px]] [[Chest]] +|— +|[[File:Chest.png|16px]] [[Chest]] +|{{cd|type=single|left|right}} +|- +|[[File:Furnace.png|16px]] [[Furnace]] +|rowspan="2"|— +|rowspan="2"|[[File:Furnace.png|16px]] [[Furnace]] +|rowspan="2"|{{cd|lit=true|false}} +|- +|[[File:Lit Furnace.png|16px]] [[Lit Furnace]] +|- +|[[File:Lever.png|16px]] [[Lever]] +|{{cd|facing=north|east|south|west|}}
{{cd||up_x|down_x|up_z|down_z}} +|[[File:Lever.png|16px]] [[Lever]] +|{{cd|face=ceiling|wall|floor}}
{{cd|facing=north|east|south|west}} +|- +|[[File:Redstone Ore.png|16px]] [[Redstone Ore]] +|rowspan="2"|— +|rowspan="2"|[[File:Redstone Ore.png|16px]] [[Redstone Ore]] +|rowspan="2"|{{cd|lit=true|false}} +|- +|[[File:Lit Redstone Ore.png|16px]] [[Lit Redstone Ore]] +|- +|[[File:Unlit Redstone Torch.png|16px]] [[Redstone Torch|Unlit Redstone Torch]] +|rowspan="2"|{{cd|facing=north|east|south|west|up}} +|[[File:Redstone Wall Torch.png|16px]] [[Redstone Wall Torch]] +|{{cd|lit=true|false}}
{{cd|facing=north|east|south|west}} +|- +|[[File:Redstone Torch.png|16px]] [[Redstone Torch]] +|[[File:Redstone Torch.png|16px]] [[Redstone Torch]] +|{{cd|lit=true|false}} +|- +|[[File:Stone Button.png|16px]] [[Stone Button]] +|{{cd|facing=north|east|south|west|up|down}} +|[[File:Stone Button.png|16px]] [[Stone Button]] +|{{cd|face=ceiling|wall|floor}}
{{cd|facing=north|east|south|west}} +|- +|[[File:Oak Trapdoor.png|16px]] [[Oak Trapdoor]] +|— +|[[File:Oak Trapdoor.png|16px]] [[Oak Trapdoor]] +|{{cd|powered=true|false}} +|- +|[[File:Stone.png|16px]] [[Infested Block]] +|{{cd|variant}} +|[[File:Stone.png|16px]] [[Infested Block]] +|— +|- +|[[File:Stone Bricks.png|16px]] [[Stone Bricks]] +|{{cd|variant}} +|[[File:Stone Bricks.png|16px]] [[Stone Bricks]] +|— +|- +|rowspan="2"|[[File:Brown Mushroom Block.png|16px]] [[Brown Mushroom Block]] +|rowspan="2"|{{cd|variant}} +|[[File:Brown Mushroom Block.png|16px]] [[Brown Mushroom Block]] +|{{cd|up=true|false}}
{{cd|down=true|false}}
{{cd|north=true|false}}
{{cd|south=true|false}}
{{cd|east=true|false}}
{{cd|west=true|false}} +|- +|rowspan="2"|[[File:Mushroom Stem.png|16px]] [[Mushroom Stem]] +|rowspan="2"| +{{cd|up=true|false}}
{{cd|down=true|false}}
{{cd|north=true|false}}
{{cd|south=true|false}}
{{cd|east=true|false}}
{{cd|west=true|false}} +|- +|rowspan="2"|[[File:Red Mushroom Block.png|16px]] [[Red Mushroom Block]] +|rowspan="2"|{{cd|variant}} +|- +|[[File:Red Mushroom Block.png|16px]] [[Red Mushroom Block]] +|{{cd|up=true|false}}
{{cd|down=true|false}}
{{cd|north=true|false}}
{{cd|south=true|false}}
{{cd|east=true|false}}
{{cd|west=true|false}} +|- +|[[File:Redstone Lamp.png|16px]] [[Redstone Lamp]] +|rowspan="2"|— +|rowspan="2"|[[File:Redstone Lamp.png|16px]] [[Redstone Lamp]] +|rowspan="2"|{{cd|lit=true|false}} +|- +|[[File:Lit Redstone Lamp.png|16px]] [[Lit Redstone Lamp]] +|- +|[[File:Cobblestone Wall.png|16px]] [[Cobblestone Wall]] +|{{cd|variant}} +|[[File:Cobblestone Wall.png|16px]] [[Cobblestone Wall]] +|— +|- +|[[File:Oak Button.png|16px]] [[Oak Button]] +|{{cd|facing=north|east|south|west|up|down}} +|[[File:Oak Button.png|16px]] [[Oak Button]] +|{{cd|face=ceiling|wall|floor}}
{{cd|facing=north|east|south|west}} +|- +|[[File:Anvil.png|16px]] [[Anvil]] +|{{cd|damage}} +|[[File:Anvil.png|16px]] [[Anvil]] +|{{cd|facing=north|east|south|west}} +|- +|[[File:Trapped Chest.png|16px]] [[Trapped Chest]] +|— +|[[File:Trapped Chest.png|16px]] [[Trapped Chest]] +|{{cd|type=single|left|right}} +|- +|[[File:Daylight Detector.png|16px]] [[Daylight Detector]] +|— +|[[File:Daylight Detector.png|16px]] [[Daylight Detector]] +|{{cd|inverted=true|false}} +|- +|rowspan="3"|[[File:Block of Quartz.png|16px]] [[Block of Quartz]] +|rowspan="3"|{{cd|variant}} +|[[File:Block of Quartz.png|16px]] [[Block of Quartz]] +|— +|- +|[[File:Chiseled Quartz Block.png|16px]] [[Chiseled Quartz Block]] +|— +|- +|[[File:Quartz Pillar.png|16px]] [[Quartz Pillar]] +|{{cd|axis=x|y|z}} +|- +|[[File:White Terracotta.png|16px]] [[Stained Terracotta]] +|{{cd|color}} +|[[File:White Terracotta.png|16px]] [[Stained Terracotta]] +|— +|- +|[[File:Iron Trapdoor.png|16px]] [[Iron Trapdoor]] +|— +|[[File:Iron Trapdoor.png|16px]] [[Iron Trapdoor]] +|{{cd|powered=true|false}} +|- +|[[File:White Carpet.png|16px]] [[Carpet]] +|{{cd|color}} +|[[File:White Carpet.png|16px]] [[Carpet]] +|— +|- +|{{BlockSprite|sunflower}} [[Flower|Double Plant]] +|{{cd|facing}}
{{cd|variant}} +|{{BlockSprite|sunflower}} [[Flower|Double Plant]] +|— +|- +|[[File:White Stained Glass.png|16px]] [[Stained Glass]] +|{{cd|color}} +|[[File:White Stained Glass.png|16px]] [[Stained Glass]] +|— +|- +|[[File:White Stained Glass Pane.png|16px]] [[Stained Glass Pane]] +|{{cd|color}} +|[[File:White Stained Glass Pane.png|16px]] [[Stained Glass Pane]] +|— +|- +|[[File:Prismarine.png|16px]] [[Prismarine]] +|{{cd|variant}} +|[[File:Prismarine.png|16px]] [[Prismarine]] +|— +|- +|[[File:Red Sandstone.png|16px]] [[Red Sandstone]] +|{{cd|variant}} +|[[File:Red Sandstone.png|16px]] [[Red Sandstone]] +|— +|- +|[[File:White Concrete.png|16px]] [[Concrete]] +|{{cd|color}} +|[[File:White Concrete.png|16px]] [[Concrete]] +|— +|- +|[[File:White Concrete Powder.png|16px]] [[Concrete Powder]] +|{{cd|color}} +|[[File:White Concrete Powder.png|16px]] [[Concrete Powder]] +|— +|- +|[[File:Redstone Repeater (S) JE4.png|16px]] [[Repeater|Unpowered Redstone Repeater]] +|rowspan="2"|— +|rowspan="2"|[[File:Redstone Repeater.png|16px]] [[Redstone Repeater]] +|rowspan="2"|{{cd|powered=true|false}} +|- +|[[File:Powered Redstone Repeater (S) JE7.png|16px]] [[Repeater|Powered Redstone Repeater]] +|- +|rowspan="2"|[[File:Pumpkin Stem.png|16px]] [[Pumpkin Stem]] +|rowspan="2"|{{cd|age}}
{{cd|facing=north|south|east|west|up}} +|[[File:Pumpkin Stem.png|16px]] [[Pumpkin Stem]] +|{{cd|age}} +|- +|[[File:Attached Pumpkin Stem.png|16px]] [[Attached Pumpkin Stem]] +|{{cd|facing=north|south|east|west}} +|- +|rowspan="2"|[[File:Melon Stem.png|16px]] [[Melon Stem]] +|rowspan="2"|{{cd|age}}
{{cd|facing=north|south|east|west|up}} +|[[File:Melon Stem.png|16px]] [[Melon Stem]] +|{{cd|age}} +|- +|[[File:Attached Melon Stem.png|16px]] [[Attached Melon Stem]] +|{{cd|facing=north|south|east|west}} +|- +|[[File:Flower Pot.png|16px]] [[Flower Pot]] +|{{cd|legacy_data}}
{{cd|contents}} +|[[File:Flower Pot.png|16px]] [[Flower Pot]] +|— +|- +|rowspan="2"|[[File:Head.png|16px]] [[Head]] +|rowspan="2"|{{cd|facing=north|east|south|west|up|down}}
{{cd|nodrop}} +|[[File:Skeleton Skull.png|16px]] [[Skeleton Skull]] +[[File:Wither Skeleton Skull.png|16px]] [[Wither Skeleton Skull]] + +[[File:Zombie Head.png|16px]] [[Zombie Head]] + +[[File:Player Head.png|16px]] [[Player Head]] + +[[File:Creeper Head.png|16px]] [[Creeper Head]] + +[[File:Dragon Head.png|16px]] [[Dragon Head]] +|{{cd|rotation=0-15}} +|- +|[[File:Skeleton Skull.png|16px]] [[Skeleton Wall Skull]] +[[File:Wither Skeleton Skull.png|16px]] [[Wither Skeleton Wall Skull]] + +[[File:Zombie Head.png|16px]] [[Zombie Wall Head]] + +[[File:Player Head.png|16px]] [[Player Wall Head]] + +[[File:Creeper Head.png|16px]] [[Creeper Wall Head]] + +[[File:Dragon Head.png|16px]] [[Dragon Wall Head]] +|{{cd|facing=north|east|south|west}} +|} + +{{notelist|state note}} + +== Painting motifs == +[[Painting#Canvases|Painting motifs]] started using resource locations ({{cd|minecraft:}} in front) as well as changed the ID to be uncapitalised and separated with underscores. +{|class="wikitable stikitable" +!Painting +![[Java Edition 1.12.2|1.12.2]] +![[Java Edition 1.13|1.13]] +|- +|[[File:Kebab (texture).png|128px]] +|{{cd|Kebab}} +|{{cd|kebab}} +|- +|[[File:Aztec (texture).png|128px]] +|{{cd|Aztec}} +|{{cd|aztec}} +|- +|[[File:Alban (texture).png|class= pixel-image|128px]] +|{{cd|Alban}} +|{{cd|alban}} +|- +|[[File:Aztec2 (texture).png|128px]] +|{{cd|Aztec2}} +|{{cd|aztec2}} +|- +|[[File:Bomb (texture).png|128px]] +|{{cd|Bomb}} +|{{cd|bomb}} +|- +|[[File:Plant (texture).png|128px]] +|{{cd|Plant}} +|{{cd|plant}} +|- +|[[File:Wasteland (texture).png|128px]] +|{{cd|Wasteland}} +|{{cd|wasteland}} +|- +|[[File:Wanderer (texture).png|128px]] +|{{cd|Wanderer}} +|{{cd|wanderer}} +|- +|[[File:Graham (texture).png|128px]] +|{{cd|Graham}} +|{{cd|graham}} +|- +|[[File:Pool (texture).png|128px]] +|{{cd|Pool}} +|{{cd|pool}} +|- +|[[File:Courbet (texture).png|128px]] +|{{cd|Courbet}} +|{{cd|courbet}} +|- +|[[File:Sunset (texture).png|128px]] +|{{cd|Sunset}} +|{{cd|sunset}} +|- +|[[File:Sea (texture).png|128px]] +|{{cd|Sea}} +|{{cd|sea}} +|- +|[[File:Creebet (texture).png|128px]] +|{{cd|Creebet}} +|{{cd|creebet}} +|- +|[[File:Match (texture).png|128px]] +|{{cd|Match}} +|{{cd|match}} +|- +|[[File:Bust (texture).png|128px]] +|{{cd|Bust}} +|{{cd|bust}} +|- +|[[File:Stage (texture).png|128px]] +|{{cd|Stage}} +|{{cd|stage}} +|- +|[[File:Void (texture).png|128px]] +|{{cd|Void}} +|{{cd|void}} +|- +|[[File:Skull and Roses (texture).png|128px]] +|{{cd|SkullAndRoses}} +|{{cd|skull_and_roses}} +|- +|[[File:Wither (painting texture).png|128px]] +|{{cd|Wither}} +|{{cd|wither}} +|- +|[[File:Fighters (texture).png|128px]] +|{{cd|Fighters}} +|{{cd|fighters}} +|- +|[[File:Skeleton (painting texture).png|128px]] +|{{cd|Skeleton}} +|{{cd|skeleton}} +|- +|[[File:Donkey Kong (texture).png|128px]] +|{{cd|DonkeyKong}} +|{{cd|donkey_kong}} +|- +|[[File:Pointer (texture).png|128px]] +|{{cd|Pointer}} +|{{cd|pointer}} +|- +|[[File:Pigscene (texture).png|128px]] +|{{cd|Pigscene}} +|{{cd|pigscene}} +|- +|[[File:Burning Skull (texture).png|128px]] +|{{cd|BurningSkull}} +|{{cd|burning_skull}} +|} + +== Names == +The [[Java Edition data values|names]] of some blocks and items were changed. + +{|class="wikitable stikitable" +![[Java Edition 1.12.2|1.12.2]] +![[Java Edition 1.13|1.13]] +|- +|[[File:Oak Planks.png|16px]] Oak Wood Planks +|[[Oak Planks]] +|- +|[[File:Spruce Planks.png|16px]] Spruce Wood Planks +|[[Spruce Planks]] +|- +|[[File:Birch Planks.png|16px]] Birch Wood Planks +|[[Birch Planks]] +|- +|[[File:Jungle Planks.png|16px]] Jungle Wood Planks +|[[Jungle Planks]] +|- +|[[File:Acacia Planks.png|16px]] Acacia Wood Planks +|[[Acacia Planks]] +|- +|[[File:Dark Oak Planks.png|16px]] Dark Oak Wood Planks +|[[Dark Oak Planks]] +|- +|[[File:Oak Log (UD) JE5 BE3.png|16px]] Oak Wood +|[[Oak Log]] +|- +|[[File:Spruce Log.png|16px]] Spruce Wood +|[[Spruce Log]] +|- +|[[File:Birch Log.png|16px]] Birch Wood +|[[Birch Log]] +|- +|[[File:Jungle Log.png|16px]] Jungle Wood +|[[Jungle Log]] +|- +|[[File:Acacia Log.png|16px]] Acacia Wood +|[[Acacia Log]] +|- +|[[File:Dark Oak Log.png|16px]] Dark Oak Wood +|[[Dark Oak Log]] +|- +|[[File:Cut Sandstone.png|16px]] Smooth Sandstone +|[[Cut Sandstone]] +|- +|[[File:Piston Head.png|16px]] Piston +|[[Piston Head]] +|- +|[[File:Piston.png|16px]] tile.null.name +|[[Moving Piston]] +|- +|[[File:Brown Mushroom.png|16px]] Mushroom +|[[Brown Mushroom]] +|- +|[[File:Red Mushroom.png|16px]] Mushroom +|[[Red Mushroom]] +|- +|[[File:Oak Slab.png|16px]] Oak Wood Slab +|[[Oak Slab]] +|- +|[[File:Spruce Slab.png|16px]] Spruce Wood Slab +|[[Spruce Slab]] +|- +|[[File:Birch Slab.png|16px]] Birch Wood Slab +|[[Birch Slab]] +|- +|[[File:Jungle Slab.png|16px]] Jungle Wood Slab +|[[Jungle Slab]] +|- +|[[File:Acacia Slab.png|16px]] Acacia Wood Slab +|[[Acacia Slab]] +|- +|[[File:Dark Oak Slab.png|16px]] Dark Oak Wood Slab +|[[Dark Oak Slab]] +|- +|[[File:Petrified Oak Slab.png|16px]] Wooden Slab +|[[Petrified Oak Slab]] +|- +|[[File:Brick Slab.png|16px]] Bricks Slab +|[[Brick Slab]] +|- +|[[File:Stone Brick Slab.png|16px]] Stone Bricks Slab +|[[Stone Brick Slab]] +|- +|[[File:Smooth Stone.png|16px]] Stone Slab +|[[Smooth Stone]] +|- +|[[File:Smooth Sandstone.png|16px]] Stone Slab +|[[Smooth Sandstone]] +|- +|[[File:Smooth Quartz.png|16px]] Stone Slab +|[[Smooth Quartz]] +|- +|[[File:Smooth Red Sandstone.png|16px]] Stone Slab +|[[Smooth Red Sandstone]] +|- +|[[File:Mossy Cobblestone.png|16px]] Moss Stone +|[[Mossy Cobblestone]] +|- +|[[File:Spawner.png|16px]] Monster Spawner +|[[Monster Spawner|Spawner]] +|- +|[[File:Nether Portal.png|16px]] Portal +|[[Nether Portal]] +|- +|[[File:Wall Torch.png|16px]] Torch (on a wall) +|[[Wall Torch]] +|- +|[[File:Oak Stairs.png|16px]] Oak Wood Stairs +|[[Oak Stairs]] +|- +|[[File:Oak Pressure Plate.png|16px]] Wooden Pressure Plate +|[[Oak Pressure Plate]] +|- +|[[File:Redstone Wall Torch.png|16px]] Redstone Torch (on a wall) +|[[Redstone Wall Torch]] +|- +|[[File:Stone Button.png|16px]] Button +|[[Stone Button]] +|- +|[[File:Snow Block.png|16px]] Snow +|[[Snow Block]] +|- +|[[File:Carved Pumpkin.png|16px]] Pumpkin +|[[Carved Pumpkin]] +|- +|[[File:Oak Trapdoor.png|16px]] Wooden Trapdoor +|[[Oak Trapdoor]] +|- +|[[File:Stone.png|16px]] Stone Monster Egg +|[[Infested Stone]] +|- +|[[File:Cobblestone.png|16px]] Cobblestone Monster Egg +|[[Infested Cobblestone]] +|- +|[[File:Stone Bricks.png|16px]] Stone Bricks Monster Egg +|[[Infested Stone Bricks]] +|- +|[[File:Mossy Stone Bricks.png|16px]] Mossy Stone Brick Monster Egg +|[[Infested Mossy Stone Bricks]] +|- +|[[File:Cracked Stone Bricks.png|16px]] Cracked Stone Brick Monster Egg +|[[Infested Cracked Stone Bricks]] +|- +|[[File:Chiseled Stone Bricks.png|16px]] Chiseled Stone Brick Monster Egg +|[[Infested Chiseled Stone Bricks]] +|- +|[[File:Brown Mushroom Block.png|16px]] Mushroom +|[[Brown Mushroom Block]] +|- +|[[File:Red Mushroom Block.png|16px]] Mushroom +|[[Red Mushroom Block]] +|- +|[[File:Nether Bricks.png|16px]] Nether Brick +|[[Nether Bricks]] +|- +|[[File:Enchanting Table.png|16px]] Enchantment Table +|[[Enchanting Table]] +|- +|[[File:End Portal Frame.png|16px]] End Portal +|[[End Portal Frame]] +|- +|[[File:End Portal.png|16px]] tile.null.name +|[[End Portal (block)|End Portal]] +|- +|[[File:End Gateway.png|16px]] tile.null.name +|[[End Gateway (block)|End Gateway]] +|- +|[[File:Spruce Stairs.png|16px]] Spruce Wood Stairs +|[[Spruce Stairs]] +|- +|[[File:Birch Stairs.png|16px]] Birch Wood Stairs +|[[Birch Stairs]] +|- +|[[File:Jungle Stairs.png|16px]] Jungle Wood Stairs +|[[Jungle Stairs]] +|- +|[[File:Oak Button.png|16px]] Button +|[[Oak Button]] +|- +|[[File:Chipped Anvil.png|16px]] Slightly Damaged Anvil +|[[Chipped Anvil]] +|- +|[[File:Damaged Anvil.png|16px]] Very Damaged Anvil +|[[Damaged Anvil]] +|- +|[[File:Light Weighted Pressure Plate.png|16px]] Weighted Pressure Plate (Light) +|[[Light Weighted Pressure Plate]] +|- +|[[File:Heavy Weighted Pressure Plate.png|16px]] Weighted Pressure Plate (Heavy) +|[[Heavy Weighted Pressure Plate]] +|- +|[[File:Daylight Detector.png|16px]] Daylight Sensor +|[[Daylight Detector]] +|- +|[[File:Quartz Pillar.png|16px]] Pillar Quartz Block +|[[Quartz Pillar]] +|- +|[[File:Acacia Stairs.png|16px]] Acacia Wood Stairs +|[[Acacia Stairs]] +|- +|[[File:Dark Oak Stairs.png|16px]] Dark Oak Wood Stairs +|[[Dark Oak Stairs]] +|- +|[[File:Tall Grass.png|16px]] Double Tallgrass +|[[Tall Grass]] +|- +|[[File:Cut Red Sandstone.png|16px]] Smooth Red Sandstone +|[[Cut Red Sandstone]] +|- +|[[File:Red Nether Bricks.png|16px]] Red Nether Brick +|[[Red Nether Bricks]] +|- +|{{ItemSprite|Wheat Seeds}} Seeds +|[[Wheat Seeds]] +|- +|[[File:Wheat Crops.png|16px]] Crops +|[[Wheat Crops]] +|- +|{{ItemSprite|Chainmail Helmet}} Chain Helmet +|[[Chainmail Helmet]] +|- +|{{ItemSprite|Chainmail Chestplate}} Chain Chestplate +|[[Chainmail Chestplate]] +|- +|{{ItemSprite|Chainmail Leggings}} Chain Leggings +|[[Chainmail Leggings]] +|- +|{{ItemSprite|Chainmail Boots}} Chain Boots +|[[Chainmail Boots]] +|- +|{{ItemSprite|Enchanted Golden Apple}} Golden Apple +|[[Enchanted Golden Apple]] +|- +|[[File:Oak Wall Sign.png|16px]] Sign (on a wall) +|[[Wall Sign]] +|- +|{{ItemSprite|Redstone Dust}} Redstone +|[[Redstone Dust]] +|- +|{{ItemSprite|Milk Bucket}} Milk +|[[Milk Bucket]] +|- +|{{ItemSprite|Sugar Cane}} Sugar Canes +|[[Sugar Cane]] +|- +|{{ItemSprite|Raw Cod}} Raw Fish +|[[Raw Cod]] +|- +|{{ItemSprite|Tropical Fish}} Clownfish +|[[Tropical Fish]] +|- +|{{ItemSprite|Cooked Cod}} Cooked Fish +|[[Cooked Cod]] +|- +|{{ItemSprite|Melon Slice}} Melon +|[[Melon Slice]] +|- +|[[File:Attached Pumpkin Stem.png|16px]] Pumpkin Stem +|[[Attached Pumpkin Stem]] +|- +|[[File:Melon Stem.png|16px]] Pumpkin StemThis is actually the melon stem, it used the same translation string as pumpkin stems. +|[[Melon Stem]] +|- +|[[File:Attached Melon Stem.png|16px]] Pumpkin Stem +|[[Melon Stem|Attached Melon Stem]] +|- +|[[File:Glistering Melon Slice.png|16px]] Glistering Melon +|[[Glistering Melon Slice]] +|- +|{{ItemSprite|Bat Spawn Egg}} Spawn Bat +|[[Bat Spawn Egg]] +|- +|{{ItemSprite|Blaze Spawn Egg}} Spawn Blaze +|[[Blaze Spawn Egg]] +|- +|{{ItemSprite|Cave Spider Spawn Egg}} Spawn Cave Spider +|[[Cave Spider Spawn Egg]] +|- +|{{ItemSprite|Chicken Spawn Egg}} Spawn Chicken +|[[Chicken Spawn Egg]] +|- +|{{ItemSprite|Cow Spawn Egg}} Spawn Cow +|[[Cow Spawn Egg]] +|- +|{{ItemSprite|Creeper Spawn Egg}} Spawn Creeper +|[[Creeper Spawn Egg]] +|- +|{{ItemSprite|Donkey Spawn Egg}} Spawn Donkey +|[[Donkey Spawn Egg]] +|- +|{{ItemSprite|Elder Guardian Spawn Egg}} Spawn Elder Guardian +|[[Elder Guardian Spawn Egg]] +|- +|{{ItemSprite|Enderman Spawn Egg}} Spawn Enderman +|[[Enderman Spawn Egg]] +|- +|{{ItemSprite|Endermite Spawn Egg}} Spawn Endermite +|[[Endermite Spawn Egg]] +|- +|{{ItemSprite|Evoker Spawn Egg}} Spawn Evoker +|[[Evoker Spawn Egg]] +|- +|{{ItemSprite|Ghast Spawn Egg}} Spawn Ghast +|[[Ghast Spawn Egg]] +|- +|{{ItemSprite|Guardian Spawn Egg}} Spawn Guardian +|[[Guardian Spawn Egg]] +|- +|{{ItemSprite|Horse Spawn Egg}} Spawn Horse +|[[Horse Spawn Egg]] +|- +|{{ItemSprite|Husk Spawn Egg}} Spawn Husk +|[[Husk Spawn Egg]] +|- +|{{ItemSprite|Llama Spawn Egg}} Spawn Llama +|[[Llama Spawn Egg]] +|- +|{{ItemSprite|Magma Cube Spawn Egg}} Spawn Magma Cube +|[[Magma Cube Spawn Egg]] +|- +|{{ItemSprite|Mooshroom Spawn Egg}} Spawn Mooshroom +|[[Mooshroom Spawn Egg]] +|- +|{{ItemSprite|Mule Spawn Egg}} Spawn Mule +|[[Mule Spawn Egg]] +|- +|{{ItemSprite|Ocelot Spawn Egg}} Spawn Ocelot +|[[Ocelot Spawn Egg]] +|- +|{{ItemSprite|Parrot Spawn Egg}} Spawn Parrot +|[[Parrot Spawn Egg]] +|- +|{{ItemSprite|Pig Spawn Egg}}} Spawn Pig +|[[Pig Spawn Egg]] +|- +|{{ItemSprite|Polar Bear Spawn Egg}} Spawn Polar Bear +|[[Polar Bear Spawn Egg]] +|- +|{{ItemSprite|Rabbit Spawn Egg}} Spawn Rabbit +|[[Rabbit Spawn Egg]] +|- +|{{ItemSprite|Sheep Spawn Egg}} Spawn Sheep +|[[Sheep Spawn Egg]] +|- +|{{ItemSprite|Shulker Spawn Egg}} Spawn Shulker +|[[Shulker Spawn Egg]] +|- +|{{ItemSprite|Silverfish Spawn Egg}} Spawn Silverfish +|[[Silverfish Spawn Egg]] +|- +|{{ItemSprite|Skeleton Spawn Egg}} Spawn Skeleton +|[[Skeleton Spawn Egg]] +|- +|{{ItemSprite|Skeleton Horse Spawn Egg}} Spawn Skeleton Horse +|[[Skeleton Horse Spawn Egg]] +|- +|{{ItemSprite|Slime Spawn Egg}} Spawn Slime +|[[Slime Spawn Egg]] +|- +|{{ItemSprite|Spider Spawn Egg}} Spawn Spider +|[[Spider Spawn Egg]] +|- +|{{ItemSprite|Squid Spawn Egg}} Spawn Squid +|[[Squid Spawn Egg]] +|- +|{{ItemSprite|Stray Spawn Egg}} Spawn Stray +|[[Stray Spawn Egg]] +|- +|{{ItemSprite|Vex Spawn Egg}} Spawn Vex +|[[Vex Spawn Egg]] +|- +|{{ItemSprite|Villager Spawn Egg}} Spawn Villager +|[[Villager Spawn Egg]] +|- +|{{ItemSprite|Vindicator Spawn Egg}} Spawn Vindicator +|[[Vindicator Spawn Egg]] +|- +|{{ItemSprite|Witch Spawn Egg}} Spawn Witch +|[[Witch Spawn Egg]] +|- +|{{ItemSprite|Wither Skeleton Spawn Egg}} Spawn Wither Skeleton +|[[Wither Skeleton Spawn Egg]] +|- +|{{ItemSprite|Wolf Spawn Egg}} Spawn Wolf +|[[Wolf Spawn Egg]] +|- +|{{ItemSprite|Zombie Spawn Egg}} Spawn Zombie +|[[Zombie Spawn Egg]] +|- +|{{ItemSprite|Zombie Horse Spawn Egg}} Spawn Zombie Horse +|[[Zombie Horse Spawn Egg]] +|- +|{{ItemSprite|Zombified Piglin Spawn Egg}} Spawn Zombie Pigman +|[[Zombified Piglin Spawn Egg|Zombie Pigman Spawn Egg]] +|- +|{{ItemSprite|Zombie Villager Spawn Egg}} Spawn Zombie Villager +|[[Zombie Villager Spawn Egg]] +|- +|[[File:Potted Poppy.png|16px]] Flower Pot +|[[Potted Poppy]] +|- +|[[File:Potted Dandelion.png|16px]] Flower Pot +|[[Potted Dandelion]] +|- +|[[File:Potted Oak Sapling.png|16px]] Flower Pot +|[[Potted Oak Sapling]] +|- +|[[File:Potted Spruce Sapling.png|16px]] Flower Pot +|[[Potted Spruce Sapling]] +|- +|[[File:Potted Birch Sapling.png|16px]] Flower Pot +|[[Potted Birch Sapling]] +|- +|[[File:Potted Jungle Sapling.png|16px]] Flower Pot +|[[Potted Jungle Sapling]] +|- +|[[File:Potted Red Mushroom.png|16px]] Flower Pot +|[[Potted Red Mushroom]] +|- +|[[File:Potted Brown Mushroom.png|16px]] Flower Pot +|[[Potted Brown Mushroom]] +|- +|[[File:Potted Cactus.png|16px]] Flower Pot +|[[Potted Cactus]] +|- +|[[File:Potted Dead Bush.png|16px]] Flower Pot +|[[Potted Dead Bush]] +|- +|[[File:Potted Fern.png|16px]] Flower Pot +|[[Potted Fern]] +|- +|[[File:Potted Acacia Sapling.png|16px]] Flower Pot +|[[Potted Acacia Sapling]] +|- +|[[File:Potted Dark Oak Sapling.png|16px]] Flower Pot +|[[Potted Dark Oak Sapling]] +|- +|[[File:Potted Blue Orchid.png|16px]] Flower Pot +|[[Potted Blue Orchid]] +|- +|[[File:Potted Allium.png|16px]] Flower Pot +|[[Potted Allium]] +|- +|[[File:Potted Azure Bluet.png|16px]] Flower Pot +|[[Potted Azure Bluet]] +|- +|[[File:Potted Red Tulip.png|16px]] Flower Pot +|[[Potted Red Tulip]] +|- +|[[File:Potted Orange Tulip.png|16px]] Flower Pot +|[[Potted Orange Tulip]] +|- +|[[File:Potted White Tulip.png|16px]] Flower Pot +|[[Potted White Tulip]] +|- +|[[File:Potted Pink Tulip.png|16px]] Flower Pot +|[[Potted Pink Tulip]] +|- +|[[File:Potted Oxeye Daisy.png|16px]] Flower Pot +|[[Potted Oxeye Daisy]] +|- +|[[File:Player Head.png|16px]] Head (item) +|[[Player Head]] +|- +|[[File:Skeleton Skull.png|16px]] tile.skull.skeleton.name (block, on the ground) +|[[Skeleton Skull]] +|- +|[[File:Skeleton Skull.png|16px]] tile.skull.skeleton.name (block, on a wall) +|[[Skeleton Wall Skull]] +|- +|[[File:Wither Skeleton Skull.png|16px]] tile.skull.skeleton.name (block, on the ground) +|[[Wither Skeleton Skull]] +|- +|[[File:Wither Skeleton Skull.png|16px]] tile.skull.skeleton.name (block, on a wall) +|[[Wither Skeleton Wall Skull]] +|- +|[[File:Zombie Head.png|16px]] tile.skull.skeleton.name (block, on the ground) +|[[Zombie Head]] +|- +|[[File:Zombie Head.png|16px]] tile.skull.skeleton.name (block, on a wall) +|[[Zombie Wall Head]] +|- +|[[File:Player Head.png|16px]] tile.skull.skeleton.name (block, on the ground) +|[[Player Head]] +|- +|[[File:Player Head.png|16px]] tile.skull.skeleton.name (block, on a wall) +|[[Player Wall Head]] +|- +|[[File:Creeper Head.png|16px]] tile.skull.skeleton.name (block, on the ground) +|[[Creeper Head]] +|- +|[[File:Creeper Head.png|16px]] tile.skull.skeleton.name (block, on a wall) +|[[Creeper Wall Head]] +|- +|[[File:Dragon Head.png|16px]] tile.skull.skeleton.name (block, on the ground) +|[[Dragon Head]] +|- +|[[File:Dragon Head.png|16px]] tile.skull.skeleton.name (block, on a wall) +|[[Dragon Wall Head]] +|- +|{{ItemSprite|Golden Horse Armor}} Gold Horse Armor +|[[Golden Horse Armor]] +|- +|[[File:Orange Banner.png|16px]] White Banner (block, on the ground) +|[[Orange Banner]] +|- +|[[File:Magenta Banner.png|16px]] White Banner (block, on the ground) +|[[Magenta Banner]] +|- +|[[File:Light Blue Banner.png|16px]] White Banner (block, on the ground) +|[[Light Blue Banner]] +|- +|[[File:Yellow Banner.png|16px]] White Banner (block, on the ground) +|[[Yellow Banner]] +|- +|[[File:Lime Banner.png|16px]] White Banner (block, on the ground) +|[[Lime Banner]] +|- +|[[File:Pink Banner.png|16px]] White Banner (block, on the ground) +|[[Pink Banner]] +|- +|[[File:Gray Banner.png|16px]] White Banner (block, on the ground) +|[[Gray Banner]] +|- +|[[File:Light Gray Banner.png|16px]] White Banner (block, on the ground) +|[[Light Gray Banner]] +|- +|[[File:Cyan Banner.png|16px]] White Banner (block, on the ground) +|[[Cyan Banner]] +|- +|[[File:Purple Banner.png|16px]] White Banner (block, on the ground) +|[[Purple Banner]] +|- +|[[File:Blue Banner.png|16px]] White Banner (block, on the ground) +|[[Blue Banner]] +|- +|[[File:Brown Banner.png|16px]] White Banner (block, on the ground) +|[[Brown Banner]] +|- +|[[File:Green Banner.png|16px]] White Banner (block, on the ground) +|[[Green Banner]] +|- +|[[File:Red Banner.png|16px]] White Banner (block, on the ground) +|[[Red Banner]] +|- +|[[File:Black Banner.png|16px]] White Banner (block, on the ground) +|[[Black Banner]] +|- +|[[File:White Wall Banner.png|16px]] White Banner (block, on a wall) +|[[White Banner]]These translation strings were originally missing, see {{bug|MC-122579}}; now they use the same translation strings as standing banners (rather than their own), see {{bug|MC-124142}} +|- +|[[File:Orange Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Orange Banner]] +|- +|[[File:Magenta Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Magenta Banner]] +|- +|[[File:Light Blue Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Light Blue Banner]] +|- +|[[File:Yellow Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Yellow Banner]] +|- +|[[File:Lime Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Lime Banner]] +|- +|[[File:Pink Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Pink Banner]] +|- +|[[File:Gray Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Gray Banner]] +|- +|[[File:Light Gray Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Light Gray Banner]] +|- +|[[File:Cyan Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Cyan Banner]] +|- +|[[File:Purple Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Purple Banner]] +|- +|[[File:Blue Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Blue Banner]] +|- +|[[File:Brown Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Brown Banner]] +|- +|[[File:Green Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Green Banner]] +|- +|[[File:Red Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Red Banner]] +|- +|[[File:Black Wall Banner.png|16px]] White Banner (block, on a wall) +|[[Black Banner]] +|- +|{{BiomeSprite|windswept hills}} Extreme Hills +|[[Windswept Hills|Mountains]] +|- +|{{BiomeSprite|swamp}} Swampland +|[[Swamp]] +|- +|{{BiomeSprite|desert-hills}} DesertHills +|[[Desert Hills]] +|- +|{{BiomeSprite|wooded-hills}} ForestHills +|[[Wooded Hills]] +|- +|{{BiomeSprite|frozen-ocean}} FrozenOcean +|[[Frozen Ocean]] +|- +|{{BiomeSprite|frozen-river}} FrozenRiver +|[[Frozen River]] +|- +|{{BiomeSprite|snowy plains}} Ice Plains +|[[Snowy Tundra]] +|- +|{{BiomeSprite|snowy-mountains}} Ice Mountains +|[[Snowy Mountains]] +|- +|{{BiomeSprite|mushroom-fields}} MushroomIsland +|[[Mushroom Fields]] +|- +|{{BiomeSprite|mushroom-field-shore}} MushroomIslandShore +|[[Mushroom Field Shore]] +|- +|{{BiomeSprite|taiga-hills}} TaigaHills +|[[Taiga Hills]] +|- +|{{BiomeSprite|mountain-edge}} Extreme Hills Edge +|[[Mountain Edge]] +|- +|{{BiomeSprite|nether-wastes}} Hell +|[[Nether]] +|- +|{{BiomeSprite|sparse jungle}} JungleEdge +|[[Jungle Edge]] +|- +|{{BiomeSprite|jungle-hills}} JungleHills +|[[Jungle Hills]] +|- +|{{BiomeSprite|stony-shore}} Stone Beach +|[[Stone Shore]] +|- +|{{BiomeSprite|snowy-beach}} Cold Beach +|[[Snowy Beach]] +|- +|{{BiomeSprite|dark-forest}} Roofed Forest +|[[Dark Forest]] +|- +|{{BiomeSprite|snowy-taiga}} Cold Taiga +|[[Snowy Taiga]] +|- +|{{BiomeSprite|snowy-taiga-hills}} Cold Taiga Hills +|[[Snowy Taiga Hills]] +|- +|{{BiomeSprite|old-growth-pine-taiga}} Mega Taiga +|[[Giant Tree Taiga]] +|- +|{{BiomeSprite|giant-tree-taiga-hills}} Mega Taiga Hills +|[[Giant Tree Taiga Hills]] +|- +|{{BiomeSprite|windswept forest}} Extreme Hills+ +|[[Wooded Mountains]] +|- +|{{BiomeSprite|badlands}} Mesa +|[[Badlands]] +|- +|{{BiomeSprite|wooded-badlands}} Mesa Plateau F +|[[Wooded Badlands Plateau]] +|- +|{{BiomeSprite|badlands-plateau}} Mesa Plateau +|[[Badlands Plateau]] +|- +|{{BiomeSprite|desert-lakes}} Desert M +|[[Desert Lakes]] +|- +|{{BiomeSprite|windswept gravelly hills}} Extreme Hills M +|[[Gravelly Mountains]] +|- +|{{BiomeSprite|taiga-mountains}} Taiga M +|[[Taiga Mountains]] +|- +|{{BiomeSprite|swamp-hills}} Swampland M +|[[Swamp Hills]] +|- +|{{BiomeSprite|ice-spikes}} Ice Plains Spikes +|[[Ice Spikes]] +|- +|{{BiomeSprite|modified-jungle}} Jungle M +|[[Modified Jungle]] +|- +|{{BiomeSprite|modified-jungle-edge}} JungleEdge M +|[[Modified Jungle Edge]] +|- +|{{BiomeSprite|old-growth-birch-forest}} Birch Forest M +|[[Tall Birch Forest]] +|- +|{{BiomeSprite|tall-birch-hills}} Birch Forest Hills M +|[[Tall Birch Hills]] +|- +|{{BiomeSprite|dark-forest-hills}} Roofed Forest M +|[[Dark Forest Hills]] +|- +|{{BiomeSprite|snowy-taiga-mountains}} Cold Taiga M +|[[Snowy Taiga Mountains]] +|- +|{{BiomeSprite|old-growth-spruce-taiga}} Mega Spruce Taiga +|[[Giant Spruce Taiga]] +|- +|{{BiomeSprite|giant-spruce-taiga-hills}} Redwood Taiga Hills +|[[Giant Spruce Taiga Hills]] +|- +|{{BiomeSprite|modified-gravelly-mountains}} Extreme Hills+ M +|[[Gravelly Mountains+]] +|- +|{{BiomeSprite|windswept-savanna}} Savanna M +|[[Shattered Savanna]] +|- +|{{BiomeSprite|shattered-savanna-plateau}} Savanna Plateau M +|[[Shattered Savanna Plateau]] +|- +|{{BiomeSprite|eroded-badlands}} Mesa (Bryce) +|[[Eroded Badlands]] +|- +|{{BiomeSprite|modified-wooded-badlands-plateau}} Mesa Plateau F M +|[[Modified Wooded Badlands Plateau]] +|- +|{{BiomeSprite|modified-badlands-plateau}} Mesa Plateau M +|[[Modified Badlands Plateau]] +|} + +{{notelist|names note}} + +== Statistics == +[[Statistics]] received the following changes: +*Merged the blocks and items tabs. +*Changed to use resource locations. +** +{|class="wikitable" +|- +!Statistics type !![[Java Edition 1.12|1.12]] syntax !![[Java Edition 1.13|1.13]] syntax !!Remarks +|- +|Everything under the "General" tab||{{cd|stat.}} ||{{cd|minecraft.custom:minecraft.}} || became lowercased and separated with underscores +|- +|Mined [[block]]s ||{{cd|stat.mineBlock.}} ||{{cd|minecraft.mined:.}} || was before either the numeral ID or namespace.block_id +|- +|Broken [[item]]s ||{{cd|stat.breakItem.}} ||{{cd|minecraft.broken:.}} || was before either the numeral ID or namespace.block_id +|- +|Dropped [[item]]s ||{{cd|stat.drop.}} ||{{cd|minecraft.dropped:.}} || was before either the numeral ID or namespace.block_id +|- +|Used [[item]]s ||{{cd|stat.useItem.}} ||{{cd|minecraft.used:.}} || was before either the numeral ID or namespace.block_id +|- +|Killed [[entities]] ||{{cd|stat.killEntity.}} ||{{cd|minecraft.killed:.}} || was the pre-1.11 [[entity]] ID +*Now exists for all entities, not just entities with [[spawn egg]]s +|- +|Killed by [[entities]] ||{{cd|stat.entityKilledBy.}}||{{cd|minecraft.killed_by:.}}|| was the pre-1.11 [[entity]] ID +*Now exists for all entities, not just entities with [[spawn egg]]s +|} + +== NBT data == +[[Chunk format]] was modified. + +=== Items === +Changes to [[Player.dat format#Item structure|item structure]]: +*{{cd|Damage}} in the root of the item data removed. +*{{cd|Damage}} added in the {{cd|tag}} tag, only used for durability. +*{{cd|map}} integer added in the {{cd|tag}} tag, for [[map]]s. +*{{cd|Base}} of [[shield]]s has the colors in the opposite order for consistency. +*{{cd|ench}} for [[enchantment]]s got renamed to {{cd|Enchantments}}. +*[[Enchantment]] Ids in {{cd|Enchantments}} and {{cd|StoredEnchantments}} now use the string ids. + +=== Entities === +Changes to [[Chunk format#Entity format|entity format]]: +*{{cd|CollarColor}} of [[Wolves]] has the colors in the opposite order for consistency. +*{{cd|carried}} and {{cd|carriedData}} of [[endermen]] merged into {{cd|carriedBlockState}}.This tag will change to a compound format with {{cd|{Name:"block_id",Properties:{state:"value"}}}} +*{{cd|inTile}} and {{cd|inData}} of [[arrow]]s and [[spectral arrow]]s merged into {{cd|inBlockState}}. +*{{cd|DisplayTile}} and {{cd|DisplayData}} of [[minecart]]s merged into {{cd|DisplayState}}. +*{{cd|Block}} and {{cd|Data}} of [[Tutorials/Falling blocks|falling block]]s merged into {{cd|BlockState}}. +*{{cd|ParticleParams1}} and {{cd|ParticleParams2}} from [[area effect cloud]]s removed, merged with Particle (same formatting as in the command). + +=== Blocks === +Changes to [[Chunk format#Block entity format|block entity format]]: +*[[Flower pot]] block entity removed. +*[[Note block]] block entity removed. +*{{cd|BlockId}} and {{cd|BlockData}} of [[moving piston]]s merged into {{cd|blockState}}. +*{{cd|Base}} from [[banner]]s removed. +*{{cd|Rot}} from [[head]]s removed. +*{{cd|Color}} of [[banner]]s' and [[shield]]s' {{cd|Patterns}} has the colors in the opposite order for consistency. +*{{cd|Record}} of [[jukebox]]es removed. + +==== Prior specifications ==== +; Note block +
+*{{nbt|compound}} Block entity data +**{{nbt inherit/blockentity}} +**{{nbt|byte|note}}: Pitch (number of {{Control|use|text=uses}}). +**{{nbt|byte|powered}}: 1 or 0 (true/false) - if true, the noteblock is being provided a redstone signal. +
+ +; Flower pot +
+*{{nbt|compound}} Block entity data +**{{nbt inherit/blockentity}} +**{{nbt|string|Item}}: The Block ID of the plant in the pot. Known valid blocks are ''minecraft:sapling'' (6), ''minecraft:tallgrass'' (31), ''minecraft:deadbush'' (32), ''minecraft:yellow_flower'' (37), ''minecraft:red_flower'' (38), ''minecraft:brown_mushroom'' (39), ''minecraft:red_mushroom'' (40), ''minecraft:cactus'' (81). Other block and item IDs may be used, but not all will render. Together with '''Data''', this determines the item dropped by the pot when destroyed. +**{{nbt|int|Data}}: The data value to use in conjunction with the above Block ID. For example if Item is 6 (a sapling block), the Data is used to indicate the type of sapling. +
+ +{{notelist|NBT note}} + +== Commands == +Some [[command]]s were changed. + +*{{cmd|clear}} {{cd|[]}} argument removed.See [[Java Edition 1.13/Flattening#NBT Data|nbt section]] for what happens to other data values. See also 1.13's [[Java Edition 1.13#Commands 2|Items]] section +*{{cmd|clone}} {{cd|[]}} argument merged with ID and no longer allows metadata.See also 1.13's [[Java Edition 1.13#Commands 2|Blocks]] section +*{{cmd|execute detect}} (now {{cmd|execute if{{!}}unless block}}) {{cd|[]}} argument merged with ID and no longer allows metadata. +*{{cmd|fill}} {{cd|[]}} and {{cd|[]}} arguments merged with ID and no longer allow metadata. +*{{cmd|give}} {{cd|[]}} argument removed. +*{{cmd|replaceitem}} {{cd|[]}} argument removed. +*{{cmd|setblock}} {{cd|[]}} argument merged with ID and no longer allows metadata. +*{{cmd|particle}} {{cd|[]}} arguments merged with {{cd|name}} and formatted as {{cd|block_id[states]}} and {{cd|item_id}}. + +{{notelist|command note}} + +== Advancements == +Two changes were made to [[advancement]]s: + +*{{cd|icon}}'s {{cd|data}} removed. +*{{cd|item}} condition's {{cd|data}} removed. + +== Loot tables == +The {{cd|set_data}} function was removed from [[loot table]]s. + +== Game assets == +*[[Model]]s +**Renamed to use the new IDs. +*[[Block state]] files +**Renamed to use the new IDs. +**{{cd|"normal"}} for blocks without block states changed to an empty string ({{cd|""}}). +**Item frames now have {{cd|"map{{=}}false"}} instead of {{cd|"normal"}} and {{cd|"map{{=}}true"}} instead of {{cd|"map"}}. +**Model references no longer start at the {{cd|models/block/}} folder, but instead at {{cd|models/}}. +*Textures +**Renamed to use the new IDs. See [[Java Edition 1.13/Resource pack changes]] for the list of file names changed. +**Renamed the {{cd|blocks}} folder to {{cd|block}}. +**Renamed the {{cd|items}} folder to {{cd|item}}. +*[[Recipe]]s +**Renamed to use the new IDs. +*[[Advancement]]s +**Recipe advancements renamed to use the new IDs. +*[[Language]] files +** +{|class="wikitable" +|- +!Translation key !![[Java Edition 1.12|1.12]] syntax !![[Java Edition 1.13|1.13]] syntax !!Remarks !!Example +|- +|[[Block]]s ||{{cd|tile..name}} ||{{cd|block..}} || was an arbitrary name; +''e.g. "lightgem" for [[glowstone]]'' +||{{cd|"tile.lightgem.name": "Glowstone"}} +has been replaced with
{{cd|"block.minecraft.glowstone": "Glowstone"}} +|- +|[[Item]]s ||{{cd|item..name}} ||{{cd|item..}} || was an arbitrary name; +''e.g. "yellowDust" for [[glowstone dust]]'' +||{{cd|"item.yellowDust.name": "Glowstone Dust"}} +has been replaced with
{{cd|"item.minecraft.glowstone_dust": "Glowstone Dust"}} +|- +|[[Entities]] ||{{cd|entity..name}}||{{cd|entity..}} || was an arbitrary name; +''e.g. "MinecartRideable" for the pre-[[1.11]] ID of [[minecart]]'' +||{{cd|"entity.MinecartRideable.name": "Minecart"}} +has been replaced with
{{cd|"entity.minecraft.minecart": "Minecart"}} +|- +|[[Enchantment]]s ||{{cd|enchantment.}}||{{cd|enchantment..}}|| was an arbitrary name; +''e.g. "waterWorker" for [[Aqua Affinity]]'' +||{{cd|"enchant.waterWorker": "Aqua Affinity"}} +has been replaced with
{{cd|"enchantment.minecraft.aqua_affinity": "Aqua Affinity"}} +|- +|[[Effect]]s ||{{cd|effect.}} ||{{cd|effect..}} || was an arbitrary name; +''e.g. "digSlowDown" for [[Mining Fatigue]]'' +||{{cd|"effect.digSlowDown": "Mining Fatigue"}} +has been replaced with
{{cd|"effect.minecraft.mining_fatigue": "Mining Fatigue"}} +|- +|General [[statistics]] ||{{cd|stat.}} ||{{cd|stat..}} || was the statistic name with capitalization; +''e.g. "playOneMinute" for Time Played'' +||{{cd|"stat.playOneMinute": "Time Played"}} +has been replaced with
{{cd|"stat.minecraft.play_one_minute": "Time Played"}} +|- +|[[Statistics]] information||{{cd|stat.}} ||{{cd|stat_type..}} || was the statistic type with capitalization; +''e.g. "entityKills" for killed [[mob]]s'' +||{{cd|"stat.entityKills": "You killed %s %s"}} +has been replaced with
{{cd|"stat_type.minecraft.killed": "You killed %s %s"}} +|} + +=== Block translation strings === +{{info needed section|A raw list of names copied directly from en_US.lang can be found commented out below; these will need rearranged into a table like those above}} + +=== Item translation strings === +{{info needed section|A raw list of names copied directly from en_US.lang can be found commented out below; these will need rearranged into a table like those above}} + + +== History == +{{HistoryTable +|{{HistoryLine|java}} +|{{HistoryLine||1.13|dev=17w45a|Command format changed to no longer use meta data and damage values; making the items differing by damage not possible to be given with commands.}} +|{{HistoryLine|||dev=17w47a|The item and block IDs got merged, deleted, separated and renamed. +|The block state changes got applied. +|Removed damage from items, added damage in the {{cd|tag}} tag for tools and armor and added {{cd|map}} for maps. +|[[Trapped chest]]s now got their own block entity id {{cd|trapped_chest}}. +|Metadata completely removed. +|Particle IDs now use resource locations and got renamed. +|Statistics now use resource locations, and entity statistics got removed. +|Translation strings now follow the ID for items, blocks and statistics.}} +|{{HistoryLine|||dev=17w47b|[[Trapped chest]]s now use the {{cd|chest}} block entity id again.}} +|{{HistoryLine|||dev=17w48a|Entity statistics re-added and now apply to all entities.}} +|{{HistoryLine|||dev=18w02a|Painting motives now use resource locations and got and renamed. +|Wall banners now use the same translation key as their standing variant banners. +|The translation keys for entities are now {{cd|entity.<''namespace''>.<''id''>}} instead of {{cd|entity.<''title''>.name}}.}} +|{{HistoryLine|||dev=18w07b|Renamed {{cd|turtle_shell_piece}} to {{cd|scute}}.}} +|{{HistoryLine|||dev=18w10b|Separated {{cd|dead_coral}} into one for each color.}} +|{{HistoryLine|||dev=18w10c|Merged {{cd|water}} and {{cd|flowing_water}}. +|Merged {{cd|lava}} and {{cd|flowing_lava}}.}} +|{{HistoryLine|||dev=18w14b|Renamed {{cd|<''color''>_dead_coral}} to {{cd|dead_<''variant''>_coral_block}}. +|Renamed {{cd|<''color''>_coral}} to {{cd|<''variant''>_coral_block}}. +|Renamed {{cd|<''color''>_coral_plant}} to {{cd|<''variant''>_coral}}. +|Renamed {{cd|<''color''>_coral_fan}} to {{cd|<''variant''>_coral_fan}}.}} +|{{HistoryLine|||dev=18w19a|Renamed {{cd|(tall_)sea_grass}} to {{cd|(tall_)seagrass}}. +|Renamed the entity {{cd|puffer_fish}} to {{cd|pufferfish}}. +|Changed the name of "Clownfish" to "[[Tropical Fish]]".}} +|{{HistoryLine|||dev=18w20a|Renamed {{cd|kelp_top}} to {{cd|kelp}}. +|Renamed {{cd|kelp}} to {{cd|kelp_plant}}. +|Renamed {{cd|prismarine_bricks_slab}} to {{cd|prismarine_brick_slab}}. +|Renamed {{cd|prismarine_bricks_stairs}} to {{cd|prismarine_brick_stairs}}. +|Renamed {{cd|cod_mob_spawn_egg}} to {{cd|cod_spawn_egg}}. +|Renamed {{cd|salmon_mob_spawn_egg}} to {{cd|salmon_spawn_egg}}. +|Renamed {{cd|cod_mob}} to {{cd|cod}}. +|Renamed {{cd|salmon_mob}} to {{cd|salmon}}. +|Changed the name of "Weighted Pressure Plate (Heavy)" to "[[Heavy Weighted Pressure Plate]]". +|Changed the name of "Weighted Pressure Plate (Light") to" [[Light Weighted Pressure Plate]]". +|Changed the name of "Gold Horse Armor" to "[[Golden Horse Armor]]". +|Changed the name of "Chain Armor" to "[[Chainmail Armor]]". +|Changed the name of "Milk" to "[[Milk Bucket]]". +|Changed the name of "Seeds" to "[[Wheat Seeds]]". +|Changed the name of "Spawn <''mob''>" to "[[Spawn Egg|<''mob''> Spawn Egg]]". +|Renamed several block textures. +|Renamed several structure files.}} +|{{HistoryLine|||dev=18w20b|Renamed {{cd|melon_block}} to {{cd|melon}}. +|Renamed {{cd|melon}} to {{cd|melon_slice}}. +|Renamed {{cd|speckled_melon}} to {{cd|glistering_melon_slice}}. +|Changed the entity name "Ender Crystal" to "[[End Crystal]]". +|Changed the entity name Block of TNT to "[[Primed TNT]]".}} +|{{HistoryLine|||dev=18w21a|The {{cd|ench}} NBT tag is now called {{cd|Enchantments}}, and no longer has number IDs in each compound.}} +|{{HistoryLine|||dev=18w22a|The block state for [[leaves]] changed from {{cd|check_decay}} and {{cd|decayable}} Booleans to {{cd|distance}} (ranging from 1 to 7) and a {{cd|persistent}} Boolean.}} +|{{HistoryLine|||dev=18w22b|[[Bark]] now has {{cd|axis=x|y|z}} block states.}} +|{{HistoryLine|||dev=pre3|{{cd|textures/blocks/}} changed to {{cd|textures/block/}}. +|{{cd|textures/items/}} changed to {{cd|textures/item/}}. +|Block state files now use {{cd|""}} rather than {{cd|"normal"}} to specify no block states. +|Block state files now reference models starting in {{cd|models/}} rather than {{cd|models/block/}}.}} +|{{HistoryLine|||dev=pre5|Renamed {{cd|xp_orb}} to {{cd|experience_orb}}. +|Renamed {{cd|xp_bottle}} to {{cd|experience_bottle}}. +|Renamed {{cd|eye_of_ender_signal}} to {{cd|eye_of_ender}}. +|Renamed {{cd|ender_crystal}} to {{cd|end_crystal}}. +|Renamed the entity {{cd|fireworks_rocket}} to {{cd|firework_rocket}}. +|Renamed {{cd|commandblock_minecart}} to {{cd|command_block_minecart}}. +|Renamed {{cd|villager_golem}} to {{cd|iron_golem}}. +|Renamed {{cd|evocation_fangs}} to {{cd|evoker_fangs}}. +|Renamed {{cd|evocation_illager}} to {{cd|evoker}}. +|Renamed {{cd|vindication_illager}} to {{cd|vindicator}}. +|Renamed {{cd|illusion_illager}} to {{cd|illusioner}}. +|Renamed {{cd|evocation_illager_spawn_egg}} to {{cd|evoker_spawn_egg}}. +|Renamed {{cd|vindication_illager_spawn_egg}} to {{cd|vindicator_spawn_egg}}. +|Renamed {{cd|mob_spawner}} to {{cd|spawner}}. +|Renamed {{cd|portal}} to {{cd|nether_portal}}. +|Renamed {{cd|clownfish}} to {{cd|tropical_fish}}. +|Renamed {{cd|clownfish_bucket}} to {{cd|tropical_fish_bucket}}. +|Renamed {{cd|chorus_fruit_popped}} to {{cd|popped_chorus_fruit}}. +|Renamed {{cd|<''type''>_bark}} to {{cd|<''type''>_wood}}. +|The sound event changes got applied. +|The biome ID changes got applied. +|The translation keys for enchantments are now {{cd|enchantment.<''namespace''>.<''id''>}} instead of {{cd|enchantment.<''name''>}} +|The translation keys for effects are now {{cd|effect.<''namespace''>.<''id''>}} instead of {{cd|effect.<''name''>}}}} +}} + +== References == +{{reflist}} + +== Navigation == +{{DEFAULTSORT:Flattening}} + +[[cs:1.13/Zploštění]] +[[de:Versionen/Vollversion 1.13/Metadaten-Entfernung]] +[[es:Java Edition 1.13/Reestructuración]] +[[fr:Édition Java 1.13/Aplanissement]] +[[ja:Java Edition 1.13/平坦化]] +[[ko:Java Edition 1.13/평탄화]] +[[pt:Edição Java 1.13/Achatamento]] +[[zh:Java版1.13/扁平化]] diff --git a/wiki_backup/1.14-pre2.txt b/wiki_backup/1.14-pre2.txt new file mode 100644 index 0000000..edd4d60 --- /dev/null +++ b/wiki_backup/1.14-pre2.txt @@ -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 +}} + +'''1.14 Pre-Release 2''' is the second pre-release for [[Java Edition 1.14]], released on April 12, 2019,{{Mcnet|minecraft-1-14-pre-release-1|Minecraft 1.14 Pre-Release 2|April 12, 2019}} 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 mouseWheelSensitivity 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 −1 or +1. 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. +}} + +== 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]] diff --git a/wiki_backup/1.14-pre3.txt b/wiki_backup/1.14-pre3.txt new file mode 100644 index 0000000..04e6bd9 --- /dev/null +++ b/wiki_backup/1.14-pre3.txt @@ -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 +}} + +'''1.14 Pre-Release 3''' is the third pre-release for [[Java Edition 1.14]], released on April 16, 2019,{{Mcnet|minecraft-1-14-pre-release-1|Minecraft 1.14 Pre-Release 3|April 16, 2019}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.14-pre4.txt b/wiki_backup/1.14-pre4.txt new file mode 100644 index 0000000..2511da5 --- /dev/null +++ b/wiki_backup/1.14-pre4.txt @@ -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 +}} + +'''1.14 Pre-Release 4''' is the fourth pre-release for [[Java Edition 1.14]], released on April 17, 2019,{{Mcnet|minecraft-1-14-pre-release-1|Minecraft 1.14 Pre-Release 4|April 17, 2019}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.14-pre5.txt b/wiki_backup/1.14-pre5.txt new file mode 100644 index 0000000..c6c2b7c --- /dev/null +++ b/wiki_backup/1.14-pre5.txt @@ -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 +}} + +'''1.14 Pre-Release 5''' is the fifth and final pre-release for [[Java Edition 1.14]], released on April 18, 2019,{{Mcnet|minecraft-1-14-pre-release-1|Minecraft 1.14 Pre-Release 5|April 18, 2019}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.14.1 Pre-Release 2.txt b/wiki_backup/1.14.1 Pre-Release 2.txt new file mode 100644 index 0000000..ea0db13 --- /dev/null +++ b/wiki_backup/1.14.1 Pre-Release 2.txt @@ -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 +}} + +'''1.14.1 Pre-Release 2''' is the second and final pre-release for [[Java Edition 1.14.1]], released on May 7, 2019,{{Mcnet|minecraft-1-14-1-pre-release-1|Minecraft 1.14.1 Pre-Release 1|May 7, 2019}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.14.1-pre2.txt b/wiki_backup/1.14.1-pre2.txt new file mode 100644 index 0000000..ea0db13 --- /dev/null +++ b/wiki_backup/1.14.1-pre2.txt @@ -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 +}} + +'''1.14.1 Pre-Release 2''' is the second and final pre-release for [[Java Edition 1.14.1]], released on May 7, 2019,{{Mcnet|minecraft-1-14-1-pre-release-1|Minecraft 1.14.1 Pre-Release 1|May 7, 2019}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.14.2-pre1.txt b/wiki_backup/1.14.2-pre1.txt new file mode 100644 index 0000000..3834b4f --- /dev/null +++ b/wiki_backup/1.14.2-pre1.txt @@ -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 +}} + +'''1.14.2 Pre-Release 1''' is the first pre-release for [[Java Edition 1.14.2]], released on May 16, 2019,{{Mcnet|minecraft-1-14-2-pre-release-1|Minecraft 1.14.2 Pre-Release 1|May 16, 2019}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.14.2-pre2.txt b/wiki_backup/1.14.2-pre2.txt new file mode 100644 index 0000000..d5db202 --- /dev/null +++ b/wiki_backup/1.14.2-pre2.txt @@ -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 +}} + +'''1.14.2 Pre-Release 2''' is the second pre-release for [[Java Edition 1.14.2]], released on May 17, 2019,{{Mcnet|minecraft-1-14-2-pre-release-1|Minecraft 1.14.2 Pre-Release 2|May 17, 2019}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.14.3-pre2.txt b/wiki_backup/1.14.3-pre2.txt new file mode 100644 index 0000000..d94387f --- /dev/null +++ b/wiki_backup/1.14.3-pre2.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-14-3-pre-release-1?2|Minecraft 1.14.3 Pre-Release 2|June 7, 2019}} 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 10–11 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). +}} + +== 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]] diff --git a/wiki_backup/1.14.3-pre4.txt b/wiki_backup/1.14.3-pre4.txt new file mode 100644 index 0000000..e34ae36 --- /dev/null +++ b/wiki_backup/1.14.3-pre4.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-14-3-pre-release-1?4|Minecraft 1.14.3 Pre-Release 4|June 14, 2019}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.14.4-pre1.txt b/wiki_backup/1.14.4-pre1.txt new file mode 100644 index 0000000..03271bd --- /dev/null +++ b/wiki_backup/1.14.4-pre1.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-14-4-pre-release-1|Minecraft 1.14.4 Pre-Release 1|July 3, 2019}} 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 .zip file in the [[.minecraft]]/debug 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 === +; [[client.jar]] +* Re-integrated [[Realms]] code into the client, in package com.mojang.realmsclient.dto. +* 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 doMobSpawning being false. +|113970|Zombies of village siege do not spawn centered on a block. +|134964|Unexpected error: java.util.NoSuchElementException. +|142037|java.lang.NullPointerException: Initializing game. +|;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 Є is not included in the ''Minecraft'' font. +|153665|Full villager inventory creates invisible items. +|153712|Java using 100–200% 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 Ҙ, ҙ, Ҡ, ҡ, Ҫ, and ҫ 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|ConcurrentModificationException when a player leaves an active raid. +|155571|Silverfish and endermite spawners no longer functioning. +}} + +== 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]] diff --git a/wiki_backup/1.14.4-pre3.txt b/wiki_backup/1.14.4-pre3.txt new file mode 100644 index 0000000..8afc7aa --- /dev/null +++ b/wiki_backup/1.14.4-pre3.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-14-4-pre-release-1|Minecraft 1.14.4 Pre-Release 3|July 8, 2019}} which adds a [[splash]] and attempts to fix a chunk loading lag issue unsuccessfully.{{bug|MC-151082}}: Marked as "Fixed" for this version but later reopened. + +== Additions == +; [[Splash]]es +* Added "Ping the human!". + +== Video == +{{video note|The performance fix mentioned in this video was unsuccessful.|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]] diff --git a/wiki_backup/1.14.4-pre5.txt b/wiki_backup/1.14.4-pre5.txt new file mode 100644 index 0000000..d524915 --- /dev/null +++ b/wiki_backup/1.14.4-pre5.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-14-4-pre-release-1|Minecraft 1.14.4 Pre-Release 5|July 11, 2019}} 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. + +== 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]] diff --git a/wiki_backup/1.14.4-pre6.txt b/wiki_backup/1.14.4-pre6.txt new file mode 100644 index 0000000..681bc37 --- /dev/null +++ b/wiki_backup/1.14.4-pre6.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-14-4-pre-release-1|Minecraft 1.14.4 Pre-Release 6|July 15, 2019}} 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. + +; 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. + +== 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]] diff --git a/wiki_backup/1.14.4-pre7.txt b/wiki_backup/1.14.4-pre7.txt new file mode 100644 index 0000000..fa642e0 --- /dev/null +++ b/wiki_backup/1.14.4-pre7.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-14-4-pre-release-1|Minecraft 1.14.4 Pre-Release 7|July 18, 2019}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.15-pre1.txt b/wiki_backup/1.15-pre1.txt new file mode 100644 index 0000000..1f6a5d1 --- /dev/null +++ b/wiki_backup/1.15-pre1.txt @@ -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 +}} + +'''1.15 Pre-release 1''' (known as '''1.15-pre1''' in the launcher) is the first pre-release for [[Java Edition 1.15]], released on November 21, 2019,{{Mcnet|minecraft-1-15-pre-release-1|Minecraft 1.15 Pre-Release 1|November 21, 2019}} 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 [a-z0-9/._-] 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. +}} + +== Video == +Video made by [[slicedlime]]: +{{yt|ZQCyILARYoY}} + +== 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. + +== 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]] diff --git a/wiki_backup/1.15-pre2.txt b/wiki_backup/1.15-pre2.txt new file mode 100644 index 0000000..b5fa5ae --- /dev/null +++ b/wiki_backup/1.15-pre2.txt @@ -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 +}} + +'''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.{{Mcnet|minecraft-1-15-pre-release-1|Minecraft 1.15 Pre-Release 2|November 25, 2019}} + +== 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.{{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}} + +=== 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. +}} + + +== 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]] diff --git a/wiki_backup/1.15-pre3.txt b/wiki_backup/1.15-pre3.txt new file mode 100644 index 0000000..7e1f546 --- /dev/null +++ b/wiki_backup/1.15-pre3.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-15-pre-release-1?3|Minecraft 1.15 Pre-Release 3|November 28, 2019}} 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."{{bug|MC-166292}} +** "Buzzy Bees!" +** "Minecraft Java Edition presents: Disgusting Bugs" + +== Changes == +=== Blocks === +; [[Farmland]], [[grass path]] and [[soul sand]] +* No longer suffocate [[mob]]s.{{bug|MC-166718}} + +; [[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]].{{bug|MC-166025}} + +; 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 [[Java Edition level format#level.dat format|level.dat]]. +|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. +}} + +== 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]] diff --git a/wiki_backup/1.15-pre4.txt b/wiki_backup/1.15-pre4.txt new file mode 100644 index 0000000..e623ce7 --- /dev/null +++ b/wiki_backup/1.15-pre4.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-15-pre-release-1?4|Minecraft 1.15 Pre-Release 4|December 3, 2019}} 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 (224) blocks. The following list includes instances that are known and confirmed to be fixed: +*** [[Particle]]s +**** [[Fishing]] particles{{bug|MC-161991}} +**** [[Squid]] ink particles{{bug|MC-161994}} +**** [[End gateway]] particles{{bug|MC-161999}} +**** [[Conduit]] particles{{bug|MC-161993}} +**** Impact particles when entity has fallen from height on to block{{bug|MC-76810}} +**** Sweeping attack particles +**** Damage heart particles +**** Particles appearing when using the {{cmd|/particle}} command +**** [[Mycelium]] particles +**** Underwater particles +**** [[Nether portal]] particles +**** [[End portal]] particles +**** [[Brewing stand]] particles +**** [[Monster spawner]] particles +**** [[Barrier]] particles +**** [[Armor stand]] breaking particles +**** Suspended gravity affected block particles +*** [[Entities]] +**** Primed [[TNT]] entities.{{bug|MC-125638}} However, indirectly ignited TNT from other explosions is still affected.{{bug|MC-167047}} +*** [[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.{{bug|MC-161888}} However, there are still issues with the book not opening early enough.{{bug|MC-167044}} + +* 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. +}} + +== 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]] diff --git a/wiki_backup/1.15-pre5.txt b/wiki_backup/1.15-pre5.txt new file mode 100644 index 0000000..9dbd898 --- /dev/null +++ b/wiki_backup/1.15-pre5.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-15-pre-release-1?5|Minecraft 1.15 Pre-Release 5|December 5, 2019}} which fixes some bugs. + +== Changes == +=== General === +; [[Resource pack]]s +* Increased the size limit for the client-side downloading of resource packs from 50 MB to 100 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. +}} + +== 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]] diff --git a/wiki_backup/1.15-pre7.txt b/wiki_backup/1.15-pre7.txt new file mode 100644 index 0000000..022d640 --- /dev/null +++ b/wiki_backup/1.15-pre7.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-15-pre-release-1?7|Minecraft 1.15 Pre-Release 7|December 9, 2019}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.15.1-pre1.txt b/wiki_backup/1.15.1-pre1.txt new file mode 100644 index 0000000..65f5c03 --- /dev/null +++ b/wiki_backup/1.15.1-pre1.txt @@ -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 +}} + +'''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.{{Mcnet|minecraft-1-15-1-pre-release-1|Minecraft 1.15.1 Pre-Release 1|December 12, 2019}} + +== 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. + +== Video == +{{Slicedlime|dzkee1pIyV4}} + +== Trivia == +* 1.15.1-pre1 is the last pre-release to be released in [[Timeline of events|2019]] and the 2010s decade. + +== 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]] diff --git a/wiki_backup/1.15.2-pre1.txt b/wiki_backup/1.15.2-pre1.txt new file mode 100644 index 0000000..85de59d --- /dev/null +++ b/wiki_backup/1.15.2-pre1.txt @@ -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 +}} + +'''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.{{Mcnet|minecraft-1-15-2-pre-release-1|Minecraft 1.15.2 Pre-Release 1|January 14, 2020}} + +== Additions == +=== Command format === +; [[Gamerule]]s +* Added doPatrolSpawning. +** Controls the spawning of [[patrol]]s. +** Defaults to true. +* Added doTraderSpawning. +** Controls the spawning of [[wandering trader]]s. +** Defaults to true. + +=== 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 gui_light option in models to allow controlling light when rendering model as an item in a GUI. +** If set to side, the model is rendered like a block. +** If set to front, 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.{{ytl|WZVCxMQmdho|t=283|What's New in Minecraft 1.15.2 Pre-release 1?|Slicedlime|January 15, 2020}} + +; 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. + +== Video == +{{slicedlime|WZVCxMQmdho}} + +== 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]]. + +== 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]] diff --git a/wiki_backup/1.15.2-pre2.txt b/wiki_backup/1.15.2-pre2.txt new file mode 100644 index 0000000..a8b634f --- /dev/null +++ b/wiki_backup/1.15.2-pre2.txt @@ -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 +}} + +'''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.{{Mcnet|minecraft-1-15-2-pre-release-1|Minecraft 1.15.2 Pre-Release 2|January 16, 2020}} + +== 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. +}} + +== Video == +{{slicedlime|kgYm7D93deA}} + +== 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". + +== 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]] diff --git a/wiki_backup/1.16-pre1.txt b/wiki_backup/1.16-pre1.txt new file mode 100644 index 0000000..54d5b78 --- /dev/null +++ b/wiki_backup/1.16-pre1.txt @@ -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 |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 +}} + +'''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,{{Mcnet|minecraft-1-16-pre-release-1|Minecraft 1.16 Pre-Release 1|June 4, 2020}} 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 forgiveDeadPlayers is disabled. +* Disabled by default. + +=== Gameplay === +; [[Recipe book]] +* Added recipe book unlocks for [[smithing table]]s, though they are non-functional. + +=== 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!''" 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.{{Bug|MC-186600}} + +=== 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 player’s 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 obtain_netherite_hoe.json. 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. +* 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 ] 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]].{{bug|MC-164692}} +** Speeding up a baby [[strider]]'s aging.{{bug|MC-176225}} +** Shearing [[sheep]] (a regression from 1.15.2).{{bug|MC-178567}} +** Feeding a brown [[mooshroom]].{{bug|MC-178618}} +** 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.{{bug|MC-180922}} +* Hand animations for the following have been removed: +** Targeting a block through a mob then using a [[spawn egg]].{{bug|MC-165669}} +** Attempting to switch a [[minecart with furnace]]'s direction when it isn't on a rail.{{bug|MC-165734}} +** Using a [[dye]] on a [[sheep]] which already has that color.{{bug|MC-166524}} + +; [[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.{{bug|MC-167046}} +** [[Campfire]] embers should now be generated at the correct position.{{bug|MC-167042}} +** Particles from [[rain]] hitting the top of blocks should now appear at the correct position.{{bug|MC-1735}} +** Smoke emitted by lava during rain should appear at the correct position.{{bug|MC-171037}} +** Smoke emitted by campfires during rain should appear at the correct position.{{bug|MC-185480}} +** Particles from [[redstone dust]] should now appear at the correct position.{{bug|MC-182748}} +** Particles from [[redstone repeater]]s should now appear at the correct position.{{bug|MC-167971}} +** Particles from nether biomes should now appear at the correct position.{{bug|MC-170872}} +** Particles from adding [[eyes of ender]] to [[end portal frame]]s should now appear at the correct position.{{bug|MC-161969}} +** Particles dripping from [[leaves]] during rain no longer snap to block corners and are correctly randomized across the underside of the block.{{bug|MC-167091}} +** 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.{{bug|MC-167044}} +** [[TNT]] ignited by other explosions now appears at the right locations at high distances.{{bug|MC-167047}} +** [[Detector rail]]s at high distances were not always being correctly powered and depowered, which has been fixed.{{bug|MC-183174}} +** Mob pathfinding caused mobs to randomly swivel at high distances.{{bug|MC-177723}} +** Mob spawning would also break down, spawning mobs at block corners and sometimes inside of other blocks.{{bug|MC-167103}} +** Generation of [[minecarts with chests]] in [[mineshaft]]s now spawns them at the intended positions.{{bug|MC-167421}} + +; [[Tag]]s +* Removed sweet berry bushes from the prevent_mob_spawning_inside block tag. +* The piglin_loved item tag now uses the gold_ores item tag instead of listening gold ore and nether gold ore individually. +* Added [[gold nugget]]s to the piglin_loved 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 aren’t 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 aren’t 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 don’t 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 can’t 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 don’t automatically attack withers. +|175028|Sometimes hoglins don’t 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 doesn’t 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 strider’s 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 won’t 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 doesn’t 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 don’t 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 isn’t centered. +|183825|New nether challenges don’t 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 kelp’s 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 don’t 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 doesn’t 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 dragon’s death doesn’t appear. +|186284|Player’s 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 doesn’t 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.}} + +== 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]] diff --git a/wiki_backup/1.16-pre4.txt b/wiki_backup/1.16-pre4.txt new file mode 100644 index 0000000..54ec79d --- /dev/null +++ b/wiki_backup/1.16-pre4.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-16-pre-release-3|Minecraft 1.16 Pre-Release 4|June 11, 2020}} 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 " to "Enabling/Disabling data pack ".{{Bug|MC-186468}} + +=== 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. +}} + +== 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]] diff --git a/wiki_backup/1.16-pre7.txt b/wiki_backup/1.16-pre7.txt new file mode 100644 index 0000000..cfc1e3c --- /dev/null +++ b/wiki_backup/1.16-pre7.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-16-pre-release-6|Minecraft 1.16 Pre-Release 7|June 16, 2020}} 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{{bug|MC-156442}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.16-pre8.txt b/wiki_backup/1.16-pre8.txt new file mode 100644 index 0000000..dce8858 --- /dev/null +++ b/wiki_backup/1.16-pre8.txt @@ -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 +}} +'''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,{{Mcnet|minecraft-1-16-pre-release-6|Minecraft 1.16 Pre-Release 8|June 17, 2020}} 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}}. +}} + +== Video == +{{slicedlime|bLpiSNdkIZc}} + +== Trivia == +* In the [[launcher]], the introduction of this version’s patch note is “Squish, squash is the sound bugs make when you squish them. Or was it squash them? Anyway, here’s 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]] diff --git a/wiki_backup/1.16-rc1.txt b/wiki_backup/1.16-rc1.txt new file mode 100644 index 0000000..f140899 --- /dev/null +++ b/wiki_backup/1.16-rc1.txt @@ -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= +}} + +'''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,{{Mcnet|minecraft-1-16-release-candidate|Minecraft 1.16 Release Candidate 1|June 18, 2020}} 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. +}} + +== 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''.{{ytl|cPJUBQd-PNM|"Revenge" - A Minecraft Parody of Usher's DJ Got Us Fallin' In Love (Music Video)|CaptainSparklez|August 19, 2011}} +* The splash "#minecraftfarms" is a hashtag [[Felix Jones]] wanted to get trending.{{tweet|Xilefian|1270028640340914178|#minecraftfarms|8 Jun 2020}}; {{tweet|Xilefian|1270032089342259202|just trying to get the hashtag trending|8 Jun 2020}}. +* 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]] diff --git a/wiki_backup/1.16.2-pre1.txt b/wiki_backup/1.16.2-pre1.txt new file mode 100644 index 0000000..5df26d7 --- /dev/null +++ b/wiki_backup/1.16.2-pre1.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-16-2-pre-release-1|Minecraft 1.16.2 Pre-Release 1|July 29, 2020}} 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: namespace/<''type''>/resource.json. + +; Font +* Minor changes to some glyphs. + +== 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. +}} + +== 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]] diff --git a/wiki_backup/1.16.2-pre2.txt b/wiki_backup/1.16.2-pre2.txt new file mode 100644 index 0000000..bb37013 --- /dev/null +++ b/wiki_backup/1.16.2-pre2.txt @@ -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 +}} +'''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,{{Mcnet|minecraft-1-16-2-pre-release-2|Minecraft 1.16.2 Pre-Release 2|August 5, 2020}} 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, ~5 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 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 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. +}} + +== 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]] diff --git a/wiki_backup/1.16.2-pre3.txt b/wiki_backup/1.16.2-pre3.txt new file mode 100644 index 0000000..c74f149 --- /dev/null +++ b/wiki_backup/1.16.2-pre3.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-16-2-pre-release-2|Minecraft 1.16.2 Pre-Release 3|August 6, 2020}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.16.2-rc2.txt b/wiki_backup/1.16.2-rc2.txt new file mode 100644 index 0000000..e732d17 --- /dev/null +++ b/wiki_backup/1.16.2-rc2.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-16-2-pre-release-2?rc2|Minecraft 1.16.2 Release Candidate 2|August 10, 2020}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.16.3-rc1.txt b/wiki_backup/1.16.3-rc1.txt new file mode 100644 index 0000000..85b1c7e --- /dev/null +++ b/wiki_backup/1.16.3-rc1.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-16-3-release-candidate-1|Minecraft 1.16.3 Release Candidate 1|September 7, 2020}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.16.4-pre1.txt b/wiki_backup/1.16.4-pre1.txt new file mode 100644 index 0000000..bfa6fc0 --- /dev/null +++ b/wiki_backup/1.16.4-pre1.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-16-4-pre-release-1|Minecraft 1.16.4 Pre-release 1|October 15, 2020}} 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 [[options.txt]]. + +; [[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. +}} + +== 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]] diff --git a/wiki_backup/1.16.4-rc1.txt b/wiki_backup/1.16.4-rc1.txt new file mode 100644 index 0000000..1af406d --- /dev/null +++ b/wiki_backup/1.16.4-rc1.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-16-4-release-candidate-1|Minecraft 1.16.4 Release Candidate 1|October 27, 2020}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.17-pre1.txt b/wiki_backup/1.17-pre1.txt new file mode 100644 index 0000000..65827bc --- /dev/null +++ b/wiki_backup/1.17-pre1.txt @@ -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}}Re-enables features set to release for [[Java Edition 1.18|1.18]]. +|parent=1.17 +|prevparent=1.16.5 +|prev=21w20a +|next=1.17 Pre-release 2 +|nextparent=1.17 +}} + +'''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,{{Mcnet|minecraft-1-17-pre-release-1|Minecraft 1.17 Pre-Release 1|May 27, 2021}} 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. +** started_riding +*** Triggered when player starts riding a vehicle or entity starts riding vehicle currently ridden by player. +** lightning_strike +*** Triggers for any player on the server when lightning finishes (i.e. entity disappears). +** using_item +*** Triggered for every tick of using items (like crossbows, spyglass, fishing rods, etc). + +=== General === + + +; [[Predicate]] +* Added lightning_bolt sub-predicate. + +; [[Splash]]es +* Added the following splash text: +** "[this splash text has been delayed until part 2]" +** "Contains simulated goats!" +** "Home-made!" +** "There's <lava_pool_stone_replaceables block tag. +** Includes the [[Tag#blocks features_cannot_replace|#features_cannot_replace]] block tag and the [[Tag#blocks leaves|#leaves]] block tag. +* Added geode_invalid_blocks 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 source condition to effects_changed trigger. + +; [[Crafting]] +* It is now no longer possible to craft [[suspicious stew]] using [[flowering azalea]] or [[flowering azalea leaves]].{{bug|MC-226521|||Works As Intended}} + +=== 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''.{{bug|MC-226535||Java Edition is using credits from Bedrock now|Works As Intended}} +* Changed the format from {{cd|.txt}} to {{cd|.json}}. +* Now scroll faster when holding {{key|Space}}. + +; [[Predicate]] +* Added passenger, stepping_on and lightning_bolt properties to entity_properties predicate +* Added looking_at (entity currently viewed by player) condition to player sub-predicate. +* Expanded item field on item predicate to items. +* Now accepts an array of item types. +* Expanded block field on block predicate to blocks. +** Now accepts an array of block types. + +; [[Splash]]es +* Removed "Woo, /v/!" + +; [[Tag]]s +* Added [[flowering azalea]] and [[flowering azalea leaves]] to the flowers block and item tags. +* Removed flowering azalea and flowering azalea leaves from the small_flowers 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 mineable/axe block tag. +* Added potted azalea bushes and potted flowering azaleas bushes to the flower_pots block tag. +* Added non-waxed oxidized copper variants to the needs_stone_tool block tag. + +== Fixes == +{{fixes|fixedin=1.17 Pre-release 1 +|;old +|19690|Reducing maxHealth / max_health 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 (ArrayIndexOutOfBoundsException). +|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|SynchedEntityData 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 facing block state in #wall_corals 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 BlendedNoise. +|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|glShaderSource fails on some AMD drivers resulting in a crash on 1.17. +|223843|Mycelium inside enderman_holdable.json 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|java.lang.IllegalArgumentException: bound must be positive. +|225773|Axolotls can make ambient noises when they're playing dead. +|226192|Crash upon attempting to create a new scoreboard objective: java.lang.NullPointerException: Cannot invoke "String.toLowerCase(java.util.Locale)" because "☃" is null. +|;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 needs_stone_tool.json. +|;private +|213869|Ender dragon's death animation resets when the chunk it is in is reloaded. +}} + +== Video == +{{slicedlime|Yt3h3OjLLNY|ybsephcOJkQ}} + +== Gallery == + +1.17-pre1(HD).jpg|Full screenshot of banner. + + +== 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]] diff --git a/wiki_backup/1.17-pre2.txt b/wiki_backup/1.17-pre2.txt new file mode 100644 index 0000000..2611ee8 --- /dev/null +++ b/wiki_backup/1.17-pre2.txt @@ -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}}Re-enables features set to release for [[Java Edition 1.18|1.18]]. +|parent=1.17 +|prevparent=1.16.5 +|prev=1.17 Pre-release 1 +|next=1.17 Pre-release 3 +|nextparent=1.17 +}} + +'''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,{{Mcnet|minecraft-1-17-pre-release-2|Minecraft 1.17 Pre-Release 2|May 31, 2021}} which fixed bugs and crashes, including fixes related to [[smooth lighting]]. + +== Changes == +=== Block === +; [[Flowering azalea leaves]] +* The namespaced ID was changed from minecraft:azalea_leaves_flowers to minecraft:flowering_azalea_leaves. + +== 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 ExplosionPower 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|Failed sysctl call 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. +}} + +== 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]] diff --git a/wiki_backup/1.17-pre3.txt b/wiki_backup/1.17-pre3.txt new file mode 100644 index 0000000..02eb2f7 --- /dev/null +++ b/wiki_backup/1.17-pre3.txt @@ -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}}Re-enables features set to release for [[Java Edition 1.18|1.18]]. +|parent=1.17 +|prevparent=1.16.5 +|prev=1.17 Pre-release 2 +|next=1.17 Pre-release 4 +|nextparent=1.17 +}} + +'''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,{{Mcnet|minecraft-1-17-pre-release-2|Minecraft 1.17 Pre-Release 3|June 1, 2021}} 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 false), 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 base_stone_overworld [[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 (IllegalStateException: Accessing PalettedContainer from multiple threads). +|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: Error: java.lang.NullPointerException: Cannot read field "u" because "☃" is null. +|226660|"Double closing program" warnings upon closing the game. +|226874|Player's owned player_head on mobs are flashing. +|;previous +|226956|Gravity blocks do not break when doEntityDrops 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. +}} + +== 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]] diff --git a/wiki_backup/1.17-rc2.txt b/wiki_backup/1.17-rc2.txt new file mode 100644 index 0000000..b8d24ed --- /dev/null +++ b/wiki_backup/1.17-rc2.txt @@ -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}}Re-enables features set to release for [[Java Edition 1.18|1.18]]. +|parent=1.17 +|prevparent=1.16.5 +|prev=1.17 Release Candidate 1 +|nextparent=1.17 +}} + +'''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,{{Mcnet|minecraft-1-17-release-candidate-1|Minecraft 1.17 Release Candidate 2|June 7, 2021}} 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.https://www.reddit.com/r/Minecraft/comments/nub794/a_new_challenger_arrives_minecraft_117_release/h0wlnsc + +== 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]] diff --git a/wiki_backup/1.17.1-pre1.txt b/wiki_backup/1.17.1-pre1.txt new file mode 100644 index 0000000..5f5154b --- /dev/null +++ b/wiki_backup/1.17.1-pre1.txt @@ -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}}Re-enables features set to release for [[Java Edition 1.18|1.18]]. +|parent=1.17.1 +|prevparent=1.17 +|prev= +|next=1.17.1 Pre-release 2 +|nextparent=1.17.1 +}} + +'''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,{{Mcnet|minecraft-1-17-1-pre-release-1|Minecraft 1.17.1 Pre-Release 1|June 18, 2021}} 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: ₺✂🍖🪣🔔⏳⚑₠₡₢₣₤₥₦₩₫₭₮₰₱₲₳₵₶₷₸₹₺₻₼₿ + +== 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 () appears as in the game. +|156977|When TNT is powered at the moment it's pushed, it creates a ghost block. +|194736|Duplicate text mapping for U+00B7. +|196999|U+1FEC 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|root_system 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|java.lang.NullPointerException when random_selector 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 --server parameter when starting the game, causes the game to crash. +|229299|Blue axolotls can spawn naturally. +}} +; Other +* Duplication exploit with anvils. + +== 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]] diff --git a/wiki_backup/1.17.1-pre2.txt b/wiki_backup/1.17.1-pre2.txt new file mode 100644 index 0000000..b4e8f4c --- /dev/null +++ b/wiki_backup/1.17.1-pre2.txt @@ -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}}Re-enables features set to release for [[Java Edition 1.18|1.18]]. +|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 +}} + +'''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,{{Mcnet|minecraft-1-17-1-pre-release-2|Minecraft 1.17.1 Pre-Release 2|June 29, 2021}} which adds the feature for the logging of named mobs' deaths and fixes bugs. + +== Additions == +=== General === +; [[Language]]s +* Added [[wikipedia:Classical Chinese|Classical Chinese]].Also available for versions since [[19w34a]]. + +== Changes == +=== General === +; Languages +* Removed the following languages due to incomplete translations: +** East Allgovian GermanAlso removed from 1.15's assets. +** Manx +** SicilianAlso removed from 1.15's and 1.16's assets. + +; 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. +}} + +== 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]] diff --git a/wiki_backup/1.17.1-rc1.txt b/wiki_backup/1.17.1-rc1.txt new file mode 100644 index 0000000..b008f3f --- /dev/null +++ b/wiki_backup/1.17.1-rc1.txt @@ -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}}Re-enables features set to release for [[Java Edition 1.18|1.18]]. +|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 +}} + +'''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.{{Mcnet|minecraft-1-17-1-release-candidate-1|Minecraft 1.17.1 Release Candidate 1|July 1, 2021}} + +== Additions == +=== General === +; [[Death messages]] +* Two previously untranslated death messages for some underwater mobs have been given messages: +** died from dehydration; +** died from dehydration whilst trying to escape . + +== Fixes == +{{Fixes|fixedin=1.17.1 Release Candidate 1|otherissuescount=1 +|;From 1.17 +|230716|death.attack.dryout and death.attack.dryout.player display raw translation strings (are untranslated). +}} +; Other +* Fixed crashes. + +== 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]] diff --git a/wiki_backup/1.17.1-rc2.txt b/wiki_backup/1.17.1-rc2.txt new file mode 100644 index 0000000..1eba1e2 --- /dev/null +++ b/wiki_backup/1.17.1-rc2.txt @@ -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}}Re-enables features set to release for [[Java Edition 1.18|1.18]]. +|parent=1.17.1 +|prevparent=1.17 +|prev=1.17.1 Release Candidate 1 +|next= +|nextparent=1.17.1 +}} + +'''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.{{Mcnet|minecraft-1-17-1-release-candidate-1|Minecraft 1.17.1 Release Candidate 2|July 5, 2021}} + +== Fixes == +{{fixes|fixedin=1.17.1 Release Candidate 2|otherissuescount=2}} +; Private issues +* A private issue was fixed. +; Other +* Fixed some critical issues. + +== 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]] diff --git a/wiki_backup/1.18 experimental snapshot 2.txt b/wiki_backup/1.18 experimental snapshot 2.txt new file mode 100644 index 0000000..5de39b8 --- /dev/null +++ b/wiki_backup/1.18 experimental snapshot 2.txt @@ -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 [[.minecraft]]/versions 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 +}} + +'''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,{{Mcnet|new-world-generation-java-available-testing|New world generation in Java available for testing|July 20, 2021|Henrik Kniberg}}{{reddit|oo3pvy/minecraft_118_experimental_snapshot_2_is_out||Minecraft 1.18 experimental snapshot 2 is out!|MrHenrik2|July 20, 2021}} 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. + +== Issues == +This version is not supported on the bug tracker, and therefore issues affecting it will be resolved as "Invalid".{{bug|MC-231984}} + +== Gallery == + +Experimental Biome Comparison 1.jpg| +Experimental Biome Comparison 2.jpg| + + +== 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]] diff --git a/wiki_backup/1.18 experimental snapshot 3.txt b/wiki_backup/1.18 experimental snapshot 3.txt new file mode 100644 index 0000000..3819630 --- /dev/null +++ b/wiki_backup/1.18 experimental snapshot 3.txt @@ -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 [[.minecraft]]/versions 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 +}} + +'''1.18 experimental snapshot 3''' is the third experimental snapshot for [[Java Edition 1.18]], released on August 10, 2021,{{Mcnet|new-world-generation-java-available-testing|New world generation in Java available for testing|August 10, 2021|Henrik Kniberg}}{{reddit|p1pc9d/minecraft_118_experimental_snapshot_3_is_out||Minecraft 1.18 experimental snapshot 3 is out!|MrHenrik2|August 10, 2021}} 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. + +== Issues == +This version is not supported on the bug tracker, and therefore issues affecting it will be resolved as "Invalid".{{bug|MC-231984}} + +== 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]] diff --git a/wiki_backup/1.18 experimental snapshot 4.txt b/wiki_backup/1.18 experimental snapshot 4.txt new file mode 100644 index 0000000..bd4eea7 --- /dev/null +++ b/wiki_backup/1.18 experimental snapshot 4.txt @@ -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 [[.minecraft]]/versions 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 +}} + +'''1.18 experimental snapshot 4''' is the fourth experimental snapshot for [[Java Edition 1.18]], released on August 17, 2021,{{Mcnet|new-world-generation-java-available-testing|New world generation in Java available for testing|August 17, 2021|Henrik Kniberg}}{{reddit|p67u6p/minecraft_118_experimental_snapshot_4_is_out||Minecraft 1.18 experimental snapshot 4 is out!|MrHenrik2|August 17, 2021}} 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. + +== Issues == +This version is not supported on the bug tracker, and therefore issues affecting it will be resolved as "Invalid".{{bug|MC-231984}} + +== 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]] diff --git a/wiki_backup/1.18 experimental snapshot 7.txt b/wiki_backup/1.18 experimental snapshot 7.txt new file mode 100644 index 0000000..f21fd4e --- /dev/null +++ b/wiki_backup/1.18 experimental snapshot 7.txt @@ -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 [[.minecraft]]/versions 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 +}} + +'''1.18 experimental snapshot 7''' is the seventh and final experimental snapshot for [[Java Edition 1.18]], released on September 8, 2021,{{Mcnet|new-world-generation-java-available-testing|New world generation in Java available for testing|September 8, 2021|Henrik Kniberg}}{{reddit|pkalqg/minecraft_118_experimental_snapshot_7_is_out||Minecraft 1.18 experimental snapshot 7 is out!|MrHenrik2|September 8, 2021}} 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. + +== Video == +{{Slicedlime|_Nw2Q2Ptmm4}} + +== Issues == +This version is not supported on the bug tracker, and therefore issues affecting it will be resolved as "Invalid".{{bug|MC-231984}} + +== 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| + + +== 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]] diff --git a/wiki_backup/1.18-pre2.txt b/wiki_backup/1.18-pre2.txt new file mode 100644 index 0000000..80c86d4 --- /dev/null +++ b/wiki_backup/1.18-pre2.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-pre-release-2|Minecraft 1.18 Pre-Release 2|November 16, 2021}} 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 "bze.a()" because the return value of "bzg.a(int, int, int)" is null. +|238049|Passive mobs (cows, pigs, sheep, chickens) sometimes do not spawn. +|238076|UpgradeData 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 "ddm.a(cao, cps, java.util.Random, gh)" because the return value of "java.util.function.Supplier.get()" 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. +}} + +== 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]] diff --git a/wiki_backup/1.18-pre3.txt b/wiki_backup/1.18-pre3.txt new file mode 100644 index 0000000..2efdae1 --- /dev/null +++ b/wiki_backup/1.18-pre3.txt @@ -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 +}} + +'''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, {{Mcnet|minecraft-1-18-pre-release-2|Minecraft 1.18 Pre-Release 3|November 17, 2021}} which fixed bugs. + +== Changes == +=== General === +; [[Server]] +* Starting server.jar with an empty bundlerMainClass 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. +}} + +== 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]] diff --git a/wiki_backup/1.18-pre4.txt b/wiki_backup/1.18-pre4.txt new file mode 100644 index 0000000..3ec96b2 --- /dev/null +++ b/wiki_backup/1.18-pre4.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-pre-release-2|Minecraft 1.18 Pre-Release 4|November 17, 2021}} 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 // java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0. +|241775|Crash when going through end portals or creating a single biome world with end biomes // java.lang.NegativeArraySizeException: -5. +|241778|Game crashes or freeze when loading and upgrading the 1.17.1 version of the Superflat world // java.util.concurrent.CompletionException: z: Biome decoration. +}} + +== 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]] diff --git a/wiki_backup/1.18-pre5.txt b/wiki_backup/1.18-pre5.txt new file mode 100644 index 0000000..bcde648 --- /dev/null +++ b/wiki_backup/1.18-pre5.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-pre-release-2|Minecraft 1.18 Pre-Release 5|November 19, 2021}} which fixes some bugs, many of which are relating to textures issues. + +== Additions == +=== General === +; [[Tag]]s +* Added following block tags: +** azalea_grows_on +*** Contains [[Tag#blocks dirt|#dirt]], [[Tag#blocks sand|#sand]], [[Tag#blocks terracotta|#terracotta]], [[snow_block]], and [[powder_snow]]. +** azalea_root_replaceable +*** Contains [[Tag#blocks lush_ground_replaceable|#lush_ground_replaceable]], [[Tag#blocks terracotta|#terracotta]], and [[red_sand]]. +** replaceable_plants +*** Contains [[grass]], [[fern]], [[dead_bush]], [[vine]], [[glow_lichen]], [[sunflower]], [[lilac]], [[rose_bush]], [[peony]], [[tall_grass]], [[large_fern]], and [[hanging_roots]]. +** terracotta +*** 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: +** dirt +*** Contains [[dirt]], [[grass_block]], [[podzol]], [[coarse_dirt]], [[mycelium]], [[rooted_dirt]], and [[moss_block]]. +** terracotta +*** 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 stage3 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 (stage0 and stage1) 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 #minecraft:mineable/hoe and #minecraft:mineable/axe tags, while regular Azalea Leaves (and all other leaves) are only in #minecraft:mineable/hoe. +|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. +}} + +== 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]] diff --git a/wiki_backup/1.18-pre8.txt b/wiki_backup/1.18-pre8.txt new file mode 100644 index 0000000..90ddeb5 --- /dev/null +++ b/wiki_backup/1.18-pre8.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-pre-release-6|Minecraft 1.18 Pre-Release 8|November 24, 2021}} 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 "it.unimi.dsi.fastutil.objects.ObjectSet.remove(Object)" because "$$4" 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: Missing Palette entry for index 6. +}} + +== 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]] diff --git a/wiki_backup/1.18-rc2.txt b/wiki_backup/1.18-rc2.txt new file mode 100644 index 0000000..5314415 --- /dev/null +++ b/wiki_backup/1.18-rc2.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-release-candidate-1|Minecraft 1.18 Release Candidate 2|November 26, 2021}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.18-rc3.txt b/wiki_backup/1.18-rc3.txt new file mode 100644 index 0000000..f3235ec --- /dev/null +++ b/wiki_backup/1.18-rc3.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-release-candidate-1|Minecraft 1.18 Release Candidate 3|November 26, 2021}} which fixes a bug. + +== Fixes == +{{fixes|fixedin=1.18 Release Candidate 3 +|;dev +|242859|Blocks losing the loot inside them after dying. +}} + +== 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]] diff --git a/wiki_backup/1.18-rc4.txt b/wiki_backup/1.18-rc4.txt new file mode 100644 index 0000000..9b792f1 --- /dev/null +++ b/wiki_backup/1.18-rc4.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-release-candidate-1|Minecraft 1.18 Release Candidate 4|November 29, 2021}} 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]]. + +== 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]] diff --git a/wiki_backup/1.18.1-pre1.txt b/wiki_backup/1.18.1-pre1.txt new file mode 100644 index 0000000..bb2ab64 --- /dev/null +++ b/wiki_backup/1.18.1-pre1.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-1-pre-release-1|Minecraft 1.18.1 Pre-Release 1|December 3, 2021}} 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. + +== 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]] diff --git a/wiki_backup/1.18.1-rc2.txt b/wiki_backup/1.18.1-rc2.txt new file mode 100644 index 0000000..2de4265 --- /dev/null +++ b/wiki_backup/1.18.1-rc2.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-1-release-candidate-1|Minecraft 1.18.1 Release Candidate 2|December 8, 2021}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.18.1-rc3.txt b/wiki_backup/1.18.1-rc3.txt new file mode 100644 index 0000000..10ff4b4 --- /dev/null +++ b/wiki_backup/1.18.1-rc3.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-1-release-candidate-1|Minecraft 1.18.1 Release Candidate 3|December 10, 2021}} 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 ${jndi:ldap://}, due to an upstream vulnerability in log4j2.{{Mcnet|important-message--security-vulnerability-java-edition|Important Message: Security vulnerability in Java Edition|December 10, 2021}}https://help.aliyun.com/noticelist/articleid/1060971232.html + +== 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]] diff --git a/wiki_backup/1.18.2-pre2.txt b/wiki_backup/1.18.2-pre2.txt new file mode 100644 index 0000000..f30d5c6 --- /dev/null +++ b/wiki_backup/1.18.2-pre2.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-2-pre-release-2|Minecraft 1.18.2 Pre-Release 2|February 21, 2022}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.18.2-pre3.txt b/wiki_backup/1.18.2-pre3.txt new file mode 100644 index 0000000..1039139 --- /dev/null +++ b/wiki_backup/1.18.2-pre3.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-2-pre-release-2|Minecraft 1.18.2 Pre-Release 3|February 23, 2022}} 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. +}} + +== 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]] diff --git a/wiki_backup/1.18.2-rc1.txt b/wiki_backup/1.18.2-rc1.txt new file mode 100644 index 0000000..57e4092 --- /dev/null +++ b/wiki_backup/1.18.2-rc1.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-18-2-release-candidate-1|Minecraft 1.18.2 Release Candidate 1|February 25, 2022}} 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). +}} + +== 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]] diff --git a/wiki_backup/1.19-pre1.txt b/wiki_backup/1.19-pre1.txt new file mode 100644 index 0000000..b944e93 --- /dev/null +++ b/wiki_backup/1.19-pre1.txt @@ -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 +}} + +'''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,{{Mcnet|minecraft-1-19-pre-release-1|Minecraft 1.19 Pre-Release 1|May 18, 2022}} 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|