Create an account


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
News - JAVA EDITION: SNAPSHOT 20W18A

#1
JAVA EDITION: SNAPSHOT 20W18A

<div style="margin: 5px 5% 10px 5%;"><img src="https://www.sickgaming.net/blog/wp-content/uploads/2020/05/java-edition-snapshot-20w18a.png" width="383" height="41" title="" alt="" /></div><div><div class="text parbase aem-GridColumn aem-GridColumn--default--12">
<div class="container article-paragraph text-generic">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<div class="end-with-block">Redstoners this is a snapshot for you to pay attention to!&nbsp; Check out the new look and ways it interacts with our Minecraft world.</div>
<div class="end-with-block"><img src="https://www.sickgaming.net/blog/wp-content/uploads/2020/05/java-edition-snapshot-20w18a.png" alt width="383" height="41"></p>
<ul>
<li>Redstone wire changes</li>
<li>The target block now conducts redstone signals</li>
</ul>
<h2>REDSTONE WIRE</h2>
<p>The blockstate, rendering and behavior of redstone wire are more in line with each other. Redstone will provide power to blocks on all sides it shows a visual connection to, and not do so on those sides without a visual connection.</p>
<ul>
<li>A single redstone wire is now represented as a cross.</li>
<li>A wire on top of a block, which is redirected from below, will power the sides it is redirected to now. E.g. a fence gate above the redirecting wire will be powered.</li>
<li>Wires that redirect upwards to wires on non-conductive blocks used to only be redirected visually. Now this redirection applies to their behavior as well.</li>
<li>A wire that is redirected to go over a block will now always provide power to the block. This is most noticeable when the wire has signal strength 1.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="article-carousel aem-GridColumn aem-GridColumn--default--12">
<div class="container-fluid article-content--image">
<div class="row">
<div class="col-12">
<div class="article-image-carousel slick-initialized slick-slider">
<div class="slick-list draggable">
<div class="slick-track">
<div class="slick-slide slick-current slick-active slick-center" data-slick-index="0" aria-hidden="false">
<div>
<div class="slick-slide-carousel">
<div class="position-relative"><img class="img-fluid article-image-carousel__image" title="an image comparing redstone wire between 1.15.2 and snapshot 20w18a" src="https://www.sickgaming.net/blog/wp-content/uploads/2020/05/java-edition-snapshot-20w18a-1.png" width="741" height="421"></div>
<div class="article-image-carousel__caption">
<p><i>Comparison between 1.15.2 and snapshot 20w18a.</i></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text parbase aem-GridColumn aem-GridColumn--default--12">
<div class="container article-paragraph text-generic">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<div class="end-with-block">
<ul>
<li>Added a&nbsp;<span class="bedrock-server">enable-status</span>&nbsp;option to the server.properties file which if set to&nbsp;<span class="bedrock-server">false</span>&nbsp;will suppress replies to status requests from clients. This makes the server appear offline in the multiplayer screen</li>
<li>Added control over how much entity data a server sends to clients</li>
<li>Advancement system changes</li>
</ul>
<h2>ENTITY BROADCASTING</h2>
<p>It is now possible to control at what range the server sends data about entities to clients.</p>
<ul>
<li>Added an&nbsp;<span class="bedrock-server">entity-broadcast-range-percentage</span>&nbsp;server property controlling how close entities need to be before being sent to clients. Higher values means entities are visible further away from players but cause more network traffic. Specifies percentage of default value, so for example&nbsp;<span class="bedrock-server">50&nbsp;</span>specifies half of the default range.</li>
</ul>
<h2>ADVANCEMENTS</h2>
<ul>
<li>Added&nbsp;<span class="bedrock-server">player</span>&nbsp;check to every trigger (except&nbsp;<span class="bedrock-server">impossible</span>)</li>
<li>Entity checks in triggers can now use loot table condition syntax</li>
</ul>
<h3>EXTENDED ENTITY CHECKS</h3>
<p>Entity checks in triggers can now use loot table condition syntax.</p>
<p>Old notation:</p>
<p><span class="bedrock-server">{<br />&nbsp; “trigger”: “minecraft:player_killed_entity”,<br />&nbsp; “conditions”: {<br />&nbsp; &nbsp; “entity”: {<br />&nbsp; &nbsp; &nbsp; “type”: “minecraft:blaze”<br />&nbsp; &nbsp; }<br />&nbsp; }<br />}</span></p>
<p>is now equivalent to:</p>
<p><span class="bedrock-server">{<br />&nbsp; “trigger”: “minecraft:player_killed_entity”,<br />&nbsp; “conditions”: {<br />&nbsp; &nbsp; “entity”: [<br />&nbsp; &nbsp; &nbsp;{<br />&nbsp; &nbsp; &nbsp; &nbsp; “condition”: “minecraft:entity_properties”,<br />&nbsp; &nbsp; &nbsp; &nbsp; “predicate”: {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; “type”: “minecraft:blaze”<br />&nbsp; &nbsp; &nbsp; &nbsp; },<br />&nbsp; &nbsp; &nbsp; &nbsp; “entity”: “this”<br />&nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; ]<br />&nbsp; }<br />}</span></p>
<p><b>Note 1</b>: Like in loot tables, all conditions in top level array must be met for whole condition to trigger.</p>
<p><b>Note 2</b>: To access new functionality, top level element must be JSON array. JSON object are interpreted as old notation.</p>
<p>Full list of extended triggers:</p>
<ul>
<li>New field&nbsp;<span class="bedrock-server">player</span>&nbsp;in every trigger</li>
<li><span class="bedrock-server">bred_animals</span>&nbsp;–&nbsp;<span class="bedrock-server">parent</span>,&nbsp;<span class="bedrock-server">partner</span>,&nbsp;<span class="bedrock-server">child</span></li>
<li><span class="bedrock-server">channeled_lightning</span>&nbsp;–&nbsp;<span class="bedrock-server">victims</span></li>
<li><span class="bedrock-server">cured_zombie_villager</span>&nbsp;–&nbsp;<span class="bedrock-server">zombie</span>,&nbsp;<span class="bedrock-server">villager</span></li>
<li><span class="bedrock-server">fishing_rod_hooked</span>&nbsp;–&nbsp;<span class="bedrock-server">entity</span></li>
<li><span class="bedrock-server">killed_by_crossbow</span>&nbsp;–&nbsp;<span class="bedrock-server">victims</span></li>
<li><span class="bedrock-server">player_killed_entity</span>&nbsp;–&nbsp;<span class="bedrock-server">entity</span></li>
<li><span class="bedrock-server">entity_killed_player</span>&nbsp;–&nbsp;<span class="bedrock-server">entity</span></li>
<li><span class="bedrock-server">player_hurt_entity</span>&nbsp;–&nbsp;<span class="bedrock-server">entity</span></li>
<li><span class="bedrock-server">summoned_entity</span>&nbsp;–&nbsp;<span class="bedrock-server">entity</span></li>
<li><span class="bedrock-server">tame_animal</span>&nbsp;–&nbsp;<span class="bedrock-server">entity</span></li>
<li><span class="bedrock-server">target_hit</span>&nbsp;–&nbsp;<span class="bedrock-server">projectile</span></li>
<li><span class="bedrock-server">villager_trade</span>&nbsp;–&nbsp;<span class="bedrock-server">villager</span>​</li>
</ul>
<h3>MISCELLANEOUS TRIGGER CHANGES</h3>
<ul>
<li>Due to addition of&nbsp;<span class="bedrock-server">player</span>, existing contents of&nbsp;<span class="bedrock-server">location</span>,&nbsp;<span class="bedrock-server">slept_in_bed</span>,&nbsp;<span class="bedrock-server">hero_of_the_village</span>,&nbsp;<span class="bedrock-server">voluntary_exile</span>&nbsp;can now be placed in&nbsp;<span class="bedrock-server">location</span>&nbsp;field instead of top-level object. Old syntax is still supported, but depreciated.</li>
</ul>
<ul>
<li><a href="https://bugs.mojang.com/browse/MC-11211">MC-11211</a>&nbsp;– Unable to perform many right click actions when targeting the top face of blocks placed at y=255</li>
<li><a href="https://bugs.mojang.com/browse/MC-111381">MC-111381</a>&nbsp;– Rendering rotations for shulkers are set in onInitialSpawn method</li>
<li><a href="https://bugs.mojang.com/browse/MC-143904">MC-143904</a>&nbsp;– Adding a non-rail block to the “rails” block tag will crash the game when placing a minecart on it</li>
<li><a href="https://bugs.mojang.com/browse/MC-147255">MC-147255</a>&nbsp;– Beds in the overworld will explode if in a nether wastes biome</li>
<li><a href="https://bugs.mojang.com/browse/MC-162385">MC-162385</a>&nbsp;– The background of the title text does not fade with the text</li>
<li><a href="https://bugs.mojang.com/browse/MC-166269">MC-166269</a>&nbsp;– Wet wolves become black for an instant after shaking off water</li>
<li><a href="https://bugs.mojang.com/browse/MC-166296">MC-166296</a>&nbsp;– Mobs picking up and equipping items does not play the equipping sound</li>
<li><a href="https://bugs.mojang.com/browse/MC-170840">MC-170840</a>&nbsp;– Broken spawn rates in soul sand valleys and warped forests</li>
<li><a href="https://bugs.mojang.com/browse/MC-170944">MC-170944</a>&nbsp;– /locatebiome messages do not fit for all biome names</li>
<li><a href="https://bugs.mojang.com/browse/MC-171523">MC-171523</a>&nbsp;– Inconsistent strings for warped and crimson wall signs</li>
<li><a href="https://bugs.mojang.com/browse/MC-172172">MC-172172</a>&nbsp;– Adult piglins spin around while following the player</li>
<li><a href="https://bugs.mojang.com/browse/MC-172253">MC-172253</a>&nbsp;– Equip sound doesn’t play when Piglins equip items</li>
<li><a href="https://bugs.mojang.com/browse/MC-173067">MC-173067</a>&nbsp;– NullPointerException when a structure containing a campfire is placed during world generation</li>
<li><a href="https://bugs.mojang.com/browse/MC-173198">MC-173198</a>&nbsp;– Target blocks are transparent and do not transfer redstone signals</li>
<li><a href="https://bugs.mojang.com/browse/MC-173385">MC-173385</a>&nbsp;– New Nether lighting system doesn’t affect fluids, entity-like blocks (chests, etc.) and entities</li>
<li><a href="https://bugs.mojang.com/browse/MC-173747">MC-173747</a>&nbsp;– Armor enchantment glint doesn’t render</li>
<li><a href="https://bugs.mojang.com/browse/MC-174573">MC-174573</a>&nbsp;– Nether vines can drop multiple copies with fortune (free duplication)</li>
<li><a href="https://bugs.mojang.com/browse/MC-174593">MC-174593</a>&nbsp;– Inconsistent pluralisation in “fell off a scaffolding”</li>
<li><a href="https://bugs.mojang.com/browse/MC-174811">MC-174811</a>&nbsp;– Zombified piglins are able to spawn on top of nether wart blocks</li>
<li><a href="https://bugs.mojang.com/browse/MC-175107">MC-175107</a>&nbsp;– It’s possible to get Bad Omen VI in Survival mode</li>
<li><a href="https://bugs.mojang.com/browse/MC-175740">MC-175740</a>&nbsp;– Game crashes when dispenser is used on non-beehive block in #beehives tag</li>
<li><a href="https://bugs.mojang.com/browse/MC-175741">MC-175741</a>&nbsp;– Game crashes when a cat attempts to sleep in a non-bed in the #beds tag</li>
<li><a href="https://bugs.mojang.com/browse/MC-176028">MC-176028</a>&nbsp;– Striders can spawn in stacks of three or more</li>
<li><a href="https://bugs.mojang.com/browse/MC-176032">MC-176032</a>&nbsp;– Striders can float</li>
<li><a href="https://bugs.mojang.com/browse/MC-176054">MC-176054</a>&nbsp;–&nbsp;Baby strider passengers float / passenger offset is too high</li>
<li><a href="https://bugs.mojang.com/browse/MC-176135">MC-176135</a>&nbsp;– Striders riding other entities are not cold</li>
<li><a href="https://bugs.mojang.com/browse/MC-176203">MC-176203</a>&nbsp;– Striders with Levitation walking on Lava don’t levitate</li>
<li><a href="https://bugs.mojang.com/browse/MC-176459">MC-176459</a>&nbsp;– Baby striders can spawn with saddles</li>
<li><a href="https://bugs.mojang.com/browse/MC-176468">MC-176468</a>&nbsp;– Adult striders can spawn with saddles</li>
<li><a href="https://bugs.mojang.com/browse/MC-177105">MC-177105</a>&nbsp;– Piglins, hoglins, zoglins and villagers look at their target’s feet instead of its head</li>
<li><a href="https://bugs.mojang.com/browse/MC-177127">MC-177127</a>&nbsp;– Unnecessary exclamation point in subtitle “End Portal opens!”</li>
<li><a href="https://bugs.mojang.com/browse/MC-177173">MC-177173</a>&nbsp;– Baby Zoglin age status value is not stored in the NBT tag.</li>
<li><a href="https://bugs.mojang.com/browse/MC-177561">MC-177561</a>&nbsp;– Compasses used on the top of lodestone at y=255 do not break when the lodestone is destroyed</li>
<li><a href="https://bugs.mojang.com/browse/MC-177771">MC-177771</a>&nbsp;– “death.attack.fireworks.item” displays raw translation string (is untranslated)</li>
<li><a href="https://bugs.mojang.com/browse/MC-177790">MC-177790</a>&nbsp;– Piglin Banners are named block.minecraft.banner.piglin.[&lt;colour&gt;]</li>
<li><a href="https://bugs.mojang.com/browse/MC-177794">MC-177794</a>&nbsp;– Globe Banner Pattern is not required to add the globe to a banner</li>
<li><a href="https://bugs.mojang.com/browse/MC-177816">MC-177816</a>&nbsp;– Failed to access/delete level should be “world”</li>
<li><a href="https://bugs.mojang.com/browse/MC-177911">MC-177911</a>&nbsp;– Cave generator doesn’t cut through blackstone</li>
<li><a href="https://bugs.mojang.com/browse/MC-177951">MC-177951</a>&nbsp;– Game crashes when fire starters are used on a non-campfire in the #campfires tag</li>
<li><a href="https://bugs.mojang.com/browse/MC-177976">MC-177976</a>&nbsp;– Baby piglins can pick up soul campfires</li>
<li><a href="https://bugs.mojang.com/browse/MC-178013">MC-178013</a>&nbsp;– Zombified Piglins riding striders can despawn, leaving saddled striders</li>
<li><a href="https://bugs.mojang.com/browse/MC-178129">MC-178129</a>&nbsp;– Entity conversion subtitles use inconsistent tenses</li>
<li><a href="https://bugs.mojang.com/browse/MC-178336">MC-178336</a>&nbsp;– The message “You have no home bed or respawn anchor, or it was obstructed” doesn’t make it clear that your respawn anchor might have been depleted</li>
<li><a href="https://bugs.mojang.com/browse/MC-178817">MC-178817</a>&nbsp;– “Chain Blocks” don’t have a “waterlogged” state</li>
<li><a href="https://bugs.mojang.com/browse/MC-178943">MC-178943</a>&nbsp;– Piglins/hoglins spawned in bastion remnants can outrun players</li>
<li><a href="https://bugs.mojang.com/browse/MC-178949">MC-178949</a>&nbsp;– Bastion Remnants cannot be generated in in superflat worlds</li>
<li><a href="https://bugs.mojang.com/browse/MC-179839">MC-179839</a>&nbsp;– Chat text renders behind the armor bar</li>
<li><a href="https://bugs.mojang.com/browse/MC-179841">MC-179841</a>&nbsp;– Game crashes when you optimize your world</li>
<li><a href="https://bugs.mojang.com/browse/MC-179845">MC-179845</a>&nbsp;– Rain falls through any blocks in some spots</li>
<li><a href="https://bugs.mojang.com/browse/MC-179847">MC-179847</a>&nbsp;– Hoglins and Piglins spin around</li>
<li><a href="https://bugs.mojang.com/browse/MC-179850">MC-179850</a>&nbsp;– There is no difference between Entity Distance 100% and 500%</li>
<li><a href="https://bugs.mojang.com/browse/MC-179858">MC-179858</a>&nbsp;– Maps show stone-like pattern despite it not being there</li>
<li><a href="https://bugs.mojang.com/browse/MC-179863">MC-179863</a>&nbsp;– Setting attribute minecraft:generic.max_health value to 0 or lower causes an infinite death loop after dying</li>
<li><a href="https://bugs.mojang.com/browse/MC-179866">MC-179866</a>&nbsp;– In some spots, it is raining even if it should be snowing</li>
<li><a href="https://bugs.mojang.com/browse/MC-179868">MC-179868</a>&nbsp;– Crash when going to a previous page of writable books</li>
<li><a href="https://bugs.mojang.com/browse/MC-179883">MC-179883</a>&nbsp;– Raw JSON text duplicates components in “extra” in entity names</li>
<li><a href="https://bugs.mojang.com/browse/MC-179886">MC-179886</a>&nbsp;– Play button overlay doesn’t appear in worldsave selection GUI</li>
<li><a href="https://bugs.mojang.com/browse/MC-179905">MC-179905</a>&nbsp;– Caption of game rule screen is missing</li>
<li><a href="https://bugs.mojang.com/browse/MC-179952">MC-179952</a>&nbsp;– Height map data doesn’t get converted</li>
<li><a href="https://bugs.mojang.com/browse/MC-179954">MC-179954</a>&nbsp;– Keybindings are not correctly inserted into the demo info box text</li>
<li><a href="https://bugs.mojang.com/browse/MC-180030">MC-180030</a>&nbsp;– Adult hoglins zombified into an adult zoglin deals the same damage as a baby</li>
<li><a href="https://bugs.mojang.com/browse/MC-180100">MC-180100</a>&nbsp;– Rain particles appear black under certain conditions</li>
<li><a href="https://bugs.mojang.com/browse/MC-180110">MC-180110</a>&nbsp;– Underline and strikethrough in JSON text don’t always render correctly</li>
<li><a href="https://bugs.mojang.com/browse/MC-180125">MC-180125</a>&nbsp;– Incorrect font spacing on non-BMP characters</li>
<li><a href="https://bugs.mojang.com/browse/MC-180135">MC-180135</a>&nbsp;– Empty chat messages are not displayed</li>
<li><a href="https://bugs.mojang.com/browse/MC-180138">MC-180138</a>&nbsp;– Long messages in chat no longer have hanging indention</li>
<li><a href="https://bugs.mojang.com/browse/MC-180246">MC-180246</a>&nbsp;– The “r” in “Game rules” is not capitalized</li>
<li><a href="https://bugs.mojang.com/browse/MC-180248">MC-180248</a>&nbsp;– The “g” in “Upgrade gear” is not capitalized</li>
<li><a href="https://bugs.mojang.com/browse/MC-180299">MC-180299</a>&nbsp;– “Elytra” in “Disable Elytra movement check” is inconsistently capitalized</li>
<li><a href="https://bugs.mojang.com/browse/MC-180353">MC-180353</a>&nbsp;– Chat background renders in front of the Debug Menu but chat text renders behind it</li>
<li><a href="https://bugs.mojang.com/browse/MC-181296">MC-181296</a>&nbsp;– Panorama has wrong overlay when using Programmer Art</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>


https://www.sickgaming.net/blog/2020/05/...ot-20w18a/
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum software by © MyBB Theme © iAndrew 2016