<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 11:52:37 UTC 2025

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Mojang Studios Jira</title>
    <link>https://bugs.mojang.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en</language>    <build-info>
        <version>9.12.2</version>
        <build-number>9120002</build-number>
        <build-date>10-01-2024</build-date>
    </build-info>


<item>
            <title>[MC-902] The end obsidian platform resets every time entities go through the end portal, which can cause blocks to be deleted</title>
                <link>https://bugs.mojang.com/browse/MC-902</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;h3&gt;&lt;a name=&quot;TheBug%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;The Bug:&lt;/b&gt;&lt;/h3&gt;

&lt;p&gt;The end obsidian platform resets every time entities go through the end portal, which can cause blocks to be deleted.&lt;/p&gt;

&lt;p&gt;This notably results in containers like chests or shulker boxes which might contain valuable items within them being deleted.&lt;/p&gt;
&lt;h3&gt;&lt;a name=&quot;StepstoReproduce%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;Steps to Reproduce:&lt;/b&gt;&lt;/h3&gt;
&lt;ol&gt;
	&lt;li&gt;Enter the end by using an end portal.&lt;/li&gt;
	&lt;li&gt;Place some blocks on top of and around the obsidian platform that you spawn on.&lt;/li&gt;
	&lt;li&gt;Take note of the blocks that you&apos;ve just placed.&lt;/li&gt;
	&lt;li&gt;Run the &quot;/kill&quot; command.&lt;/li&gt;
	&lt;li&gt;Enter the end once again and attempt to locate the blocks you just previously placed.&lt;/li&gt;
	&lt;li&gt;Take note as to whether or not the end obsidian platform resets every time entities go through the end portal, which can cause blocks to be deleted.&lt;/li&gt;
&lt;/ol&gt;


&lt;h3&gt;&lt;a name=&quot;ObservedBehavior%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;Observed Behavior:&lt;/b&gt;&lt;/h3&gt;

&lt;p&gt;The end obsidian platform resets every time entities go through the end portal, which can cause blocks to be deleted.&lt;/p&gt;
&lt;h3&gt;&lt;a name=&quot;ExpectedBehavior%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;Expected Behavior:&lt;/b&gt;&lt;/h3&gt;

&lt;p&gt;Blocks on the end obsidian platform would not be deleted every time an entity goes through the end portal.&lt;/p&gt;
&lt;h3&gt;&lt;a name=&quot;CodeAnalysis%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;Code Analysis:&lt;/b&gt;&lt;/h3&gt;

&lt;p&gt;Code analysis by &lt;a href=&quot;https://bugs.mojang.com/secure/ViewProfile.jspa?name=Avoma&quot; class=&quot;user-hover&quot; rel=&quot;Avoma&quot;&gt;Avoma&lt;/a&gt; can be found below.&lt;/p&gt;

&lt;p&gt;The following is based on a decompiled version of Minecraft 1.18.1 using MCP-Reborn.&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeHeader panelHeader&quot; style=&quot;border-bottom-width: 1px;&quot;&gt;&lt;b&gt;net.minecraft.world.entity.Entity.java&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
&lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;abstract&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;class &lt;/span&gt;Entity &lt;span class=&quot;code-keyword&quot;&gt;implements&lt;/span&gt; Nameable, EntityAccess, CommandSource {
   ...
 &#160; &lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; Entity changeDimension(ServerLevel $sl) {
      &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.level &lt;span class=&quot;code-keyword&quot;&gt;instanceof&lt;/span&gt; ServerLevel &amp;amp;&amp;amp; !&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.isRemoved()) {
         ...
         &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (portalinfo == &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;) {
            &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;;
         } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; {
            ...
            &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (entity != &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;) {
               ...
               &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; ($sl.dimension() == Level.END) {
                  ServerLevel.makeObsidianPlatform($sl);
               }
            }
            ...&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;If we look at the above class, we can see that when an entity enters the end portal, the &lt;tt&gt;makeObsidianPlatform()&lt;/tt&gt; method is called. This method completely regenerates the end obsidian platform (including the space above), causing blocks previously placed at its position to be deleted.&lt;/p&gt;</description>
                <environment></environment>
        <key id="12191">MC-902</key>
            <summary>The end obsidian platform resets every time entities go through the end portal, which can cause blocks to be deleted</summary>
                <type id="1" iconUrl="https://bugs.mojang.com/secure/viewavatar?size=xsmall&amp;avatarId=18903&amp;avatarType=issuetype">Bug</type>
                                    <status id="5" iconUrl="https://bugs.mojang.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="HugoHagglund">[Mojang] SHugoh</assignee>
                                    <reporter username="Avoma">[Mod] Avoma</reporter>
                        <labels>
                    </labels>
                <created>Sat, 27 Oct 2012 18:06:30 +0200</created>
                <updated>Fri, 28 Jun 2024 14:41:40 +0200</updated>
                            <resolved>Tue, 28 May 2024 15:55:38 +0200</resolved>
                                    <version>Minecraft 1.4.2</version>
                    <version>1.14.4</version>
                    <version>1.16.1</version>
                    <version>1.16.3</version>
                    <version>1.16.4 Pre-release 1</version>
                    <version>1.16.4 Pre-release 2</version>
                    <version>1.16.4 Release Candidate 1</version>
                    <version>1.16.4</version>
                    <version>20w45a</version>
                    <version>20w46a</version>
                    <version>20w48a</version>
                    <version>20w49a</version>
                    <version>20w51a</version>
                    <version>21w03a</version>
                    <version>1.16.5</version>
                    <version>21w05a</version>
                    <version>21w05b</version>
                    <version>21w06a</version>
                    <version>21w07a</version>
                    <version>21w08b</version>
                    <version>21w10a</version>
                    <version>21w11a</version>
                    <version>21w13a</version>
                    <version>21w14a</version>
                    <version>21w17a</version>
                    <version>21w20a</version>
                    <version>1.17</version>
                    <version>1.17.1 Pre-release 1</version>
                    <version>1.17.1</version>
                    <version>21w39a</version>
                    <version>21w42a</version>
                    <version>1.18</version>
                    <version>1.18.1</version>
                    <version>22w05a</version>
                    <version>1.18.2 Pre-release 1</version>
                    <version>1.18.2 Release Candidate 1</version>
                    <version>1.18.2</version>
                    <version>22w14a</version>
                    <version>1.19 Pre-release 4</version>
                    <version>1.19 Pre-release 5</version>
                    <version>1.19 Release Candidate 1</version>
                    <version>1.19 Release Candidate 2</version>
                    <version>1.19</version>
                    <version>22w24a</version>
                    <version>1.19.1</version>
                    <version>1.19.2</version>
                    <version>1.19.3</version>
                    <version>23w03a</version>
                    <version>23w04a</version>
                    <version>23w05a</version>
                    <version>1.19.4</version>
                    <version>1.20 Release Candidate 1</version>
                    <version>1.20</version>
                    <version>1.20.1</version>
                    <version>24w11a</version>
                    <version>1.20.6</version>
                                    <fixVersion>1.21 Pre-Release 1</fixVersion>
                                                        <votes>34</votes>
                                    <watches>22</watches>
                                                                            <comments>
                            <comment id="1326474" author="numeritos" created="Wed, 29 May 2024 16:11:26 +0200"  >&lt;p&gt;&lt;del&gt;Can reproduce in 1.21 Pre-1&lt;/del&gt;&lt;/p&gt;

&lt;p&gt;EDIT: According to Kingbodgz&apos; tweet (&lt;a href=&quot;https://x.com/kingbdogz/status/1795823127362154962&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://x.com/kingbdogz/status/1795823127362154962&lt;/a&gt;) this cannot be reproduced in 1.21 Pre-1&lt;/p&gt;</comment>
                            <comment id="1237112" author="JIRAUSER734481" created="Sat, 11 Feb 2023 16:31:37 +0100"  >&lt;p&gt;Can confirm in 23w06a&lt;/p&gt;</comment>
                            <comment id="1234895" author="JIRAUSER734481" created="Wed, 1 Feb 2023 17:04:47 +0100"  >&lt;p&gt;Can confirm in 23w05a&lt;/p&gt;</comment>
                            <comment id="1233493" author="JIRAUSER734481" created="Wed, 25 Jan 2023 08:21:56 +0100"  >&lt;p&gt;Can confirm in 23w04a&lt;/p&gt;</comment>
                            <comment id="1221702" author="JIRAUSER734481" created="Wed, 18 Jan 2023 15:25:10 +0100"  >&lt;p&gt;Can confirm in 23w03a&lt;/p&gt;</comment>
                            <comment id="1197023" author="JIRAUSER566325" created="Wed, 31 Aug 2022 20:01:38 +0200"  >&lt;p&gt;&lt;a href=&quot;https://bugs.mojang.com/secure/ViewProfile.jspa?name=purejosh&quot; class=&quot;user-hover&quot; rel=&quot;purejosh&quot;&gt;purejosh&lt;/a&gt;, this game mechanic isn&apos;t working as intended as per the assinged &quot;Mojang Priority&quot; on this ticket. In other words, Mojang Studios have recognized this to be a valid problem.&lt;/p&gt;</comment>
                            <comment id="1195316" author="JIRAUSER732802" created="Wed, 24 Aug 2022 20:28:24 +0200"  >&lt;p&gt;I think the blocks should drop as if mined by a player instead of being deleted&#160;&lt;/p&gt;</comment>
                            <comment id="1185479" author="JIRAUSER71590" created="Sat, 23 Jul 2022 06:59:26 +0200"  >&lt;p&gt;It also doesn&apos;t need to do that every time; as long as it can find a place with block below feet and air at head, it shouldn&apos;t regenerate; if there&apos;s none, it only needs to fill those 2 blocks, not destroying everything. &lt;/p&gt;</comment>
                            <comment id="1185446" author="metolone" created="Sat, 23 Jul 2022 02:18:34 +0200"  >&lt;p&gt;Is it intended that when I set a shulker box full of high tier items down and another player comes through and it vanishes?&#160; That&apos;s a bug.&#160; clear the space around the head of the incoming player if you must and regenerate the obsidian, but not the whole platform.&lt;/p&gt;</comment>
                            <comment id="1185425" author="JIRAUSER670809" created="Sat, 23 Jul 2022 01:15:44 +0200"  >&lt;p&gt;this is intended because the end has a fixed spawnpoint and you would suffocate if the obsidian platform and 2 3 by 3 layers above it wouldnt reset. i would rather be happy about a basicly infinite obsidian farm because of that.&lt;/p&gt;</comment>
                            <comment id="1174005" author="macchupicchu" created="Thu, 16 Jun 2022 15:01:22 +0200"  >&lt;p&gt;Present in 22w24a.&lt;/p&gt;</comment>
                            <comment id="1168753" author="macchupicchu" created="Thu, 2 Jun 2022 22:10:54 +0200"  >&lt;p&gt;Present in 1.19-rc1.&lt;/p&gt;</comment>
                            <comment id="1168457" author="macchupicchu" created="Wed, 1 Jun 2022 16:46:24 +0200"  >&lt;p&gt;Present in 1.19-pre5.&lt;/p&gt;</comment>
                            <comment id="1168080" author="macchupicchu" created="Mon, 30 May 2022 20:58:12 +0200"  >&lt;p&gt;Present in 1.19-pre4.&lt;/p&gt;</comment>
                            <comment id="1139000" author="JIRAUSER476246" created="Wed, 2 Feb 2022 07:44:25 +0100"  >&lt;p&gt;I just lost 3 SO MANY hours of work in mining and enchanting to this bug. How has this not been addressed? This is absolutely ridiculous.&lt;/p&gt;</comment>
                            <comment id="1122368" author="metolone" created="Mon, 6 Dec 2021 22:14:42 +0100"  >&lt;p&gt;This horrible behavior.&#160; I&apos;ve been playing for years and didn&apos;t know this, and having a couple shulker boxes of stuff that took hours to create vanish without warning is a bug, esp. when there is no cause to clear the blocks...the platform had plenty of space to spawn players.&#160; The fact that this was opened 9 years ago means &quot;Normal&quot; priority is to ignore it.&lt;/p&gt;</comment>
                            <comment id="1083884" author="JIRAUSER566325" created="Mon, 4 Oct 2021 11:09:37 +0200"  >&lt;p&gt;I am able to confirm this behavior in 21w39a. Here are some extra details regarding this problem.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;The Bug:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;The end obsidian platform resets every time an entity goes through the end portal, which can cause blocks to be deleted.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Steps to Reproduce:&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Enter the end by using an end portal.&lt;/li&gt;
	&lt;li&gt;Place some blocks on top of and around the obsidian platform that you spawn on.&lt;/li&gt;
	&lt;li&gt;Take note of the blocks that you&apos;ve just placed.&lt;/li&gt;
	&lt;li&gt;Run the &quot;/kill&quot; command.&lt;/li&gt;
	&lt;li&gt;Enter the end once again by using an end portal and notice how some blocks that you previously placed have been deleted.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;b&gt;Observed Behavior:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;The end obsidian platform resets every time an entity goes through the end portal, which can cause blocks to be deleted.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Expected Behavior:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;The end obsidian platform would not reset every time an entity goes through the end portal, which wouldn&apos;t cause blocks to be deleted.&lt;/p&gt;</comment>
                            <comment id="1063811" author="JIRAUSER71590" created="Mon, 30 Aug 2021 09:41:43 +0200"  >&lt;p&gt;I can see how this is a way of preventing &quot;spawn killing&quot;, by breaking the platform, or filling its space up. However, it makes more sense to only set the obsidian blocks if there&apos;s air, and only set air anywhere on the platform, if there&apos;s no air on the platform (and if there is, to move the player to it).&lt;/p&gt;</comment>
                            <comment id="1063801" author="vladim&#237;r" created="Mon, 30 Aug 2021 09:18:07 +0200"  >&lt;p&gt;Also, where is the source of this not being a bug?&lt;/p&gt;</comment>
                            <comment id="1063751" author="JIRAUSER648933" created="Mon, 30 Aug 2021 02:50:32 +0200"  >&lt;p&gt;Newer players might not know this. Also this has an assigned Mojang Priority, so it is considered a bug.&lt;/p&gt;</comment>
                            <comment id="1063747" author="JIRAUSER681833" created="Mon, 30 Aug 2021 02:42:08 +0200"  >&lt;p&gt;This is an intended feature. Not a bug. The solution is to not use the obsidian platform as an area to put your stuff.&#160;&lt;/p&gt;</comment>
                            <comment id="1063589" author="JIRAUSER681738" created="Sun, 29 Aug 2021 18:24:02 +0200"  >&lt;p&gt;Why is this a bug? It is so people can&apos;t trap the end, by removing the platform and letting you fall in the void, or by soffocating you, intentional or not intentional. It also allowed for farming obsidian this way, which is used by many players. In my opinion this should be intentional game design. (If you want to fix it you could only generate the platform and remove the blocks once, when they enter.)&lt;/p&gt;</comment>
                            <comment id="1056125" author="JIRAUSER566325" created="Tue, 17 Aug 2021 13:50:55 +0200"  >&lt;p&gt;Relates to&#160;&lt;a href=&quot;https://bugs.mojang.com/browse/MCPE-52483&quot; title=&quot;The end obsidian platform resets every time entities go through the end portal, which can cause blocks to be deleted&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MCPE-52483&quot;&gt;&lt;del&gt;MCPE-52483&lt;/del&gt;&lt;/a&gt;.&lt;/p&gt;</comment>
                            <comment id="1037432" author="JIRAUSER566325" created="Thu, 15 Jul 2021 15:37:41 +0200"  >&lt;p&gt;Can confirm in 1.17.1.&lt;/p&gt;</comment>
                            <comment id="1025176" author="JIRAUSER499328" created="Mon, 28 Jun 2021 04:04:13 +0200"  >&lt;p&gt;caused by the fix for &lt;a href=&quot;https://bugs.mojang.com/browse/MC-123155&quot; title=&quot;When any non-player entity enters an End portal the obsidian platform is not regenerated and the entity can fall into the void&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-123155&quot;&gt;&lt;del&gt;MC-123155&lt;/del&gt;&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1025058" author="JIRAUSER648933" created="Sun, 27 Jun 2021 23:51:34 +0200"  >&lt;p&gt;Can confirm in 1.17.1 Pre-release 1.&lt;/p&gt;</comment>
                            <comment id="1018289" author="JIRAUSER566325" created="Fri, 18 Jun 2021 10:37:31 +0200"  >&lt;p&gt;Can confirm in 1.17.&lt;/p&gt;</comment>
                            <comment id="983514" author="JIRAUSER566325" created="Fri, 30 Apr 2021 14:48:34 +0200"  >&lt;p&gt;Can confirm in 21w17a.&lt;/p&gt;</comment>
                            <comment id="944849" author="JIRAUSER566325" created="Sun, 14 Mar 2021 14:28:17 +0100"  >&lt;p&gt;Can confirm in 21w10a. Video attached.&lt;/p&gt;</comment>
                            <comment id="914294" author="JIRAUSER566325" created="Fri, 5 Feb 2021 20:56:29 +0100"  >&lt;p&gt;Can confirm in 21w05b.&lt;/p&gt;</comment>
                            <comment id="807622" author="JIRAUSER506241" created="Thu, 17 Sep 2020 16:35:31 +0200"  >&lt;p&gt;Hi! I&apos;d like to request ownership of this report.&lt;/p&gt;</comment>
                            <comment id="659396" author="epicfaild9" created="Sun, 5 Apr 2020 00:11:43 +0200"  >&lt;p&gt;Just lost the best shulker box I had, thanks mojang, really cool. Btw, I know this isn&apos;t completely a bug, but still, your game is already full of unsolved bugs.&#160;&lt;/p&gt;</comment>
                            <comment id="559615" author="black7en" created="Mon, 24 Jun 2019 20:19:08 +0200"  >&lt;p&gt;ye if this is a permanent thing.. pls put it in the Wiki. It is very disappointing.&lt;/p&gt;</comment>
                            <comment id="15149" author="muffix" created="Mon, 29 Oct 2012 20:18:20 +0100"  >&lt;p&gt;Oh wauw, hadn&apos;t thought about that. Well thanks for clarifying this for me. &lt;/p&gt;</comment>
                            <comment id="15144" author="chalmes" created="Mon, 29 Oct 2012 20:10:09 +0100"  >&lt;p&gt;If it didn&apos;t reset, then someone could fill it with blocks and when you went through, you&apos;d suffocate.&lt;/p&gt;

&lt;p&gt;Nether portals have a bit of space in them already so that can&apos;t happen with them.&lt;/p&gt;</comment>
                            <comment id="15034" author="muffix" created="Mon, 29 Oct 2012 15:46:37 +0100"  >&lt;p&gt;Oh okay thanks.&lt;br/&gt;
But isn&apos;t it still a bid stupid, that it resets everytime?&lt;/p&gt;</comment>
                            <comment id="14795" author="chalmes" created="Sun, 28 Oct 2012 21:22:27 +0100"  >&lt;p&gt;Intended.  The spawn platform and the air above it are reset each time someone enters the end.&lt;/p&gt;

&lt;p&gt;Tip:  Don&apos;t place your chests on it.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="50034">MC-29268</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="53888">MC-32477</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="247164">MC-155127</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="259554">MC-160847</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="294935">MC-174548</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="304469">MC-178330</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="307591">MC-179176</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="314752">MC-181297</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="315426">MC-181571</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="363171">MC-197670</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="372832">MC-200425</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="485191">MC-243018</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="488131">MC-244701</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="488299">MC-244782</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="493461">MC-247851</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="511759">MC-254730</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="535446">MC-263144</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="12639">MC-1314</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="16511">MC-4102</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10103">
                    <name>Relates</name>
                                            <outwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="562273">MC-273945</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="151701">MC-108605</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="212933">MC-136525</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="559460">MC-272790</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="559174">MCPE-182118</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="257890">MC-160140</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="518014">MC-256395</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="518015">MC-256396</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="559105">MC-272553</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="403924" name="2021-05-12_14.53.27.png" size="609975" author="Avoma" created="Wed, 12 May 2021 15:53:56 +0200"/>
                            <attachment id="389383" name="MC-902.mp4" size="5555038" author="Avoma" created="Sun, 14 Mar 2021 14:28:38 +0100"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                    <customfield id="customfield_12800" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Area</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="12602"><![CDATA[Platform]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10701" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>CHK</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Tue, 15 Sep 2020 09:39:00 +0200</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11901" key="com.atlassian.jira.plugin.system.customfieldtypes:multiselect">
                        <customfieldname>Category</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="11605"><![CDATA[Block states]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10500" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Confirmation Status</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10303"><![CDATA[Confirmed]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_11700" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_11100" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Linked</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>19.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_12200" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Mojang Priority</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="11702"><![CDATA[Normal]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_11600" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i0gg7r:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    </customfields>
    </item>
</channel>
</rss>